cosh
- Updated2023-02-21
- 1 minute(s) read
cosh
double cosh (double inputValue);
Purpose
Computes the hyperbolic cosine of the specified argument. If an argument is too large enough to cause the function to return infinity, it also causes a range error.
Parameters
Input | ||
Name | Type | Description |
inputValue | double | Contains the argument to the function. If this value is large enough to cause the function to return infinity, it also causes a range error. |
Return Value
Name | Type | Description |
result | double | Contains the resulting hyperbolic cosine value. If the argument to the function is too large, cosh 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