SilverScreen Solid Modeler

cosh

cosh

Previous topic Next topic  

cosh

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

double cosh( double x )

 

double x;      /* a double value */

 

 

 




Synopsis

#include "math.h"

 

The cosh function returns the hyperbolic cosine of x: (ex + e-x )/ 2.

 

 

Parameters

x may be any value.

 

 

Return Value

cosh returns a value greater than or equal to 1. If the magnitude of x is so large, such that cosh(x) cannot be represented, then the system error variable errno is set to ERANGE , and cosh returns HUGE_VAL.

 

 

See Also

sinh , tanh