Exponential of input. More...

Functions

AFAPI array exp (const array &in)
 C++ Interface for exponential of an array. More...
 
AFAPI af_err af_exp (af_array *out, const af_array in)
 C Interface for exponential of an array. More...
 

Detailed Description

Exponential of input.

Function Documentation

AFAPI af_err af_exp ( af_array out,
const af_array  in 
)

C Interface for exponential of an array.

Parameters
[out]outwill contain the exponential of in
[in]inis exponent
Returns
AF_SUCCESS if the execution completes properly
AFAPI array af::exp ( const array in)

C++ Interface for exponential of an array.

Parameters
[in]inis exponent
Returns
the exponential of in
Examples:
financial/black_scholes_options.cpp, financial/heston_model.cpp, financial/monte_carlo_options.cpp, image_processing/brain_segmentation.cpp, machine_learning/softmax_regression.cpp, and pde/swe.cpp.