Core Function Log
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> Log( <expression> ) </pre> === Description === Returns the logarithm of a specified number. === Parameters === ==== expression ==== Any valid numeric expression. === ...")
Newer edit →
(Created page with "<pre> Log( <expression> ) </pre> === Description === Returns the logarithm of a specified number. === Parameters === ==== expression ==== Any valid numeric expression. === ...")
Newer edit →
Revision as of 15:59, 2 December 2011
Log( <expression> )
Contents |
Description
Returns the logarithm of a specified number.
Parameters
expression
Any valid numeric expression.
Return Value
Returns the logarithm of a specified number.
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.