Go to the first, previous, next, last section, table of contents.

Exponential Function

Function: double gsl_sf_exp (double x)
Function: int gsl_sf_exp_e (double x, gsl_sf_result * result)
These routines provide an exponential function @math{\exp(x)} using GSL semantics and error checking.

Function: int gsl_sf_exp_e10_e (double x, gsl_sf_result_e10 * result)
This function computes the exponential @math{\exp(x)} using the gsl_sf_result_e10 type to return a result with extended range. This function may be useful if the value of @math{\exp(x)} would overflow the numeric range of double.

Function: double gsl_sf_exp_mult (double x, double y)
Function: int gsl_sf_exp_mult_e (double x, double y, gsl_sf_result * result)
These routines exponentiate x and multiply by the factor y to return the product @math{y \exp(x)}.

Function: int gsl_sf_exp_mult_e10_e (const double x, const double y, gsl_sf_result_e10 * result)
This function computes the product @math{y \exp(x)} using the gsl_sf_result_e10 type to return a result with extended numeric range.


Go to the first, previous, next, last section, table of contents.