Syntax
Public Function MathLog(Number As Double)As Double
Description
This function returns the logarithm fora specified given number.
Parameters
Key | Description |
Number | A numeric value which we want to getthe Logarithm, value of type Double. |
Return value
Returns logarithm value for the specified given number.
Sample
Public Sub main()AlertMessage (MathLog(1)) ' Ln (1) = 0 . the Alert Message will return 0 End Sub
See Also