sinh()

The mathLib.sinh() system function returns the hyperbolic sine of a number whose value represents an angle that is expressed in radians.

Syntax

  mathLib.sinh(numericVariable FLOAT in)
  returns (result FLOAT)
numericVariable
Input can be any variable or expression that is assignment compatible with the FLOAT type. The value represents an angle in radians.
result
A FLOAT value.

Example

  result = mathLib.sinh(myVar);

Feedback