clValue.SinhCosh Method

void SinhCosh(TOpenCLValue SinhX, TOpenCLValue CoshX)

Hyperbolic sine and cosine.

#NameTypeDescription
1SinhXTOpenCLValuesource TOpenCLValue
2CoshXTOpenCLValuesource 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 Dew.Math.clValue.Complex property of SinhX and CoshX are adjusted automatically.

Note
Use this method if you require hyperbolic sine and hyperbolic cosine.

Examples
clValue a;
clValue s;
clValue c;
a.Copy(0);
a.SinhCosh(s,c);
See Also: clValue.Sinh, clValue.Cosh