Math387.SinhCosh / SinhCoshf Method

Overload List

#SignatureDescription
1void SinhCosh(Double X, ref Double SinhX, ref Double CoshX)The hyperbolic sine and cosine.
2void 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.

#NameDescription
1XDefines argument for sinh and cosh functions.
2SinhXReturns the hyperbolic sine.
3CoshXReturns 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.

See Also: Math387.Sinh, Math387.Cosh, Math387.Tanh

Overload 2: void SinhCoshf(Single X, ref Single SinhX, ref Single CoshX)

#NameTypeDescription
1XSinglescalar
2SinhXSingle (ref)
3CoshXSingle (ref)

Result: stored in self (calling object)