Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SinhCosh(Double X, ref Double SinhX, ref Double CoshX) | The hyperbolic sine and cosine. |
| 2 | void SinhCoshf(Single X, ref Single SinhX, ref Single CoshX) |
Overload 1: void SinhCosh(Double X, ref Double SinhX, ref Double CoshX)
The hyperbolic sine and cosine.
| # | Name | Description |
|---|---|---|
| 1 | X | Defines argument for sinh and cosh functions. |
| 2 | SinhX | Returns the hyperbolic sine. |
| 3 | CoshX | Returns the hyperbolic cosine. |
Result: stored in self (calling object)
Remarks:
Calculates the hyperbolic sine and cosine in one pass. Use this version if you require both Sinh and Cosh.
Overload 2: void SinhCoshf(Single X, ref Single SinhX, ref Single CoshX)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
| 2 | SinhX | Single (ref) | |
| 3 | CoshX | Single (ref) |
Result: stored in self (calling object)