Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Sinh(const X: TCplx): TCplx; | Hyperbolic sine. |
| 2 | procedure Sinh(const X: TCplx; out result: TCplx); | Hyperbolic sine. |
| 3 | function Sinh(const X: TSCplx): TSCplx; | |
| 4 | procedure Sinh(const X: TSCplx; out result: TSCplx); | |
| 5 | function Sinh(const X: Double): Double; | Hyperbolic sine. |
| 6 | function Sinhf(const X: Single): Single; |
Overload 1: function Sinh(const X: TCplx): TCplx;
Hyperbolic sine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TCplx |
Returns: TCplx (complex) - Returns the hyperbolic sine of complex argument X.
Overload 2: procedure Sinh(const X: TCplx; out result: TCplx);
Hyperbolic sine.
| # | Name | Description |
|---|---|---|
| 1 | X | Defines argument for function. |
| 2 | result | Returns the hyperbolic sine. |
Result: stored in self (calling object)
Overload 3: function Sinh(const X: TSCplx): TSCplx;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TSCplx |
Returns: TSCplx
Overload 4: procedure Sinh(const X: TSCplx; out result: TSCplx);
Overload 5: function Sinh(const X: Double): Double;
Hyperbolic sine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double |
Returns: Double - Returns the hyperbolic sine of real argument X.
See Also: Math387.ArcSinh
Overload 6: function Sinhf(const X: Single): Single;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single |
Returns: Single