sinh()
Calculates the hyperbolic sine.
Synopsis
float sinh(float x);
Parameters
Parameter | Description |
---|---|
x | Angle |
Return value
In the event of errors 0.0
Description
Returns the hyperbolic sine of x.
Example
main()
{
float pi=3.141592, f;
f=sin(pi/2); // Results in 1
f=asin(1); // Results in pi/2
f=sinh(0.2); // Results in 0.201336
}
Assignment
Mathematical function
Availability
CTRL