Core Function Cosh
From Sputnik Wiki
Cosh( <expression> )
Contents |
Description
Returns the hyperbolic cosine of the specified angle.
Parameters
expression
Any valid numeric expression.
Return Value
Returns the hyperbolic cosine of the specified angle.
Remarks
None.
Example
$Param = Log(2.0); $Result = Cosh($Param); MsgBox("The hyperbolic cosine of $Param is $Result."); // Output: The hyperbolic cosine of 0.693147180559945 is 1.25.