SinH

Return hyperbolic sine

Declaration

Source position: math.pp line 366

  function SinH(x: Float) : Float;

Description

Sinh returns the hyperbolic sine of its argument x.

See also

Name Description
arsinh Return inverse hyperbolic sine
artanh Return inverse hyperbolic tangent
cosh Return hyperbolic cosine
tanh Return hyperbolic tangent

Example

Program Example42;
{ Program to demonstrate the sinh function. }
Uses math;
begin
  writeln(sinh(0));
  writeln(sinh(1));
  writeln(sinh(-1));
end.