Core Function Log
From Sputnik Wiki
Log( <expression>, <newbase> )
Contents |
Description
Returns the logarithm of a specified number.
Parameters
expression
Any valid numeric expression.
newbase
Optional; The base of the logarithm.
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.