SilverScreen Solid Modeler

exp

exp

Previous topic Next topic  

exp

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

double exp( double x )

 

double x;      /* a double value */

 

 

 




Synopsis

#include "math.h"

 

The exp function evaluates the exponential function ex .

 

 

Parameters

x may be any value.

 

 

Return Value

The value of ex is returned; if overflow occurrs, then exp sets errno to ERANGE and returns HUGE_VAL ; if underflow occurrs, then exp sets errno to ERANGE and returns 0.

 

 

See Also

log