sinh#

Purpose#

Computes the hyperbolic sine.

Format#

y = sinh(x)#
Parameters:

x (NxK matrix) – data

Returns:

y (NxK matrix) – contains the hyperbolic sines of the elements of x.

Examples#

x = { -0.5, -0.25, 0, 0.25, 0.5, 1 };
x = x * pi;
y = sinh(x);

The above statement produces, y equal to:

-2.301299
-0.868671
 0.000000
 0.868671
 2.301299
11.548739

Source#

trig.src