SINH

SINH(angle)

angleThe REAL radian value for which to find the hyperbolic sine.
Return:SINH returns a single REAL value.

The SINH function returns the hyperbolic sine of the angle.

Example:

Rad2Deg := 57.295779513082; //number of degrees in a radian

Deg2Rad := 0.0174532925199; //number of radians in a degree

Angle45 := 45 * Deg2Rad;    //translate 45 degrees into radians

HyperbolicSine45 := SINH(Angle45); //get hyperbolic sine of the angle

See Also: ACOS, COS, ASIN, TAN, ATAN, COSH, SIN, TANH