SilverScreen Solid Modeler

sinh

sinh

Previous topic Next topic  

sinh

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

double sinh( double x )

 

double x;           /* a double value */

 

 

 




Synopsis

#include "math.h"

 

The sinh function returns the hyperbolic sine of x : (ex - e-x )/ 2.

 

 

Parameters

x may be any value.

 

 

Return Value

sinh 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 sinh returns HUGE_VAL .

 

 

See Also

cosh, tanh