Core Function Cosh
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> Cosh( <expression> ) </pre> === Description === Returns the hyperbolic cosine of the specified angle. === Parameters === ==== expression ==== Any valid numeric express...")
(Created page with "<pre> Cosh( <expression> ) </pre> === Description === Returns the hyperbolic cosine of the specified angle. === Parameters === ==== expression ==== Any valid numeric express...")
Latest revision as of 15:59, 2 December 2011
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.