Log (function)

<< Click to Display Table of Contents >>

Log (function)

Log(Num)

Returns the natural logarithm of a number.

The parameter Num must be greater than 0.

See also: Exp

Example:

Sub Main

 For i = 1 to 3

         Print Log(i)

 Next i

End Sub