sinh
double sinh (double inputValue);
Purpose
Computes the hyperbolic sine of the specified argument. If the magnitude of the argument is too large, it causes a range error and the function returns infinity.
Parameters
| Input | ||
| Name | Type | Description |
| inputValue | double | Contains the argument to the function. If this value is too large, it causes a range error and the function returns infinity. |
Return Value
| Name | Type | Description |
| result | double | Contains the resulting hyperbolic cosine value. If the argument to the function is too large, sinh returns Inf and sets errno to ERANGE . |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later