cosh()

The mathLib.cosh() system function returns the hyperbolic cosine of a number as an angle expressed in radians.

Syntax

  mathLib.cosh(numericVariable FLOAT in)
  returns (result FLOAT)
numericVariable
Input can be any variable or expression that is assignment compatible with the FLOAT type (see "Assignment compatibility in EGL").
result
The hyperbolic cosine of numericVariable is returned as a FLOAT value, in radians, with no range limit.

Example

  result = mathLib.cosh(myVar);

Feedback