sinhΒΆ

sinh returns the hyperbolic sine of its parameter.

r = sinh(m)

Return Value

r is the hyperbolic sine of m.

Parameters

m

m is a real or complex matrix.

Comment

Algorithm: ((exp(x) - exp(-x)) .* 0.5).

id-75187