procedure SinhCosh(SinhX: TOpenCLValue; CoshX: TOpenCLValue);
Hyperbolic sine and cosine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SinhX | TOpenCLValue | source TOpenCLValue |
| 2 | CoshX | TOpenCLValue | source TOpenCLValue |
Result: stored in self (calling object)
Remarks:
Calculates the hyperbolic sine and hyperbolic cosine for calling object value and stores the sine to SinhX and cosine to CoshX. FloatPrecision and clValue.Complex property of SinhX and CoshX are adjusted automatically.
Note
Use this method if you require hyperbolic sine and hyperbolic cosine.
Examples
var a, s, c: clValue;
begin
a.Copy(0);
a.SinhCosh(s,c);
end;
See Also: clValue.Sinh, clValue.Cosh