void SinhCosh(const double X, double &SinhX, double &CoshX);
The hyperbolic sine and cosine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | const double | Defines argument for sinh and cosh functions. |
| 2 | SinhX | double & | Returns the hyperbolic sine. |
| 3 | CoshX | double & | Returns the hyperbolic cosine. |
Remarks:
Calculates the hyperbolic sine and cosine in one pass. Use this version if you require both Sinh and Cosh.
Declared in Dew::Math::Units::Math387 · Dew.Math/Units.Math387.h · Cross-compiler