ID : 231
Exp
Function
A numeric operation function to calculate an exponential function (exponential of base e formula).
Syntax
Exp(number)
Guaranteed entry
- number
- Designate a Double Precision Real Number Type.
Return value
Return a Double Precision Real Number Type.
Description
A numeric operation function to calculate an exponential function (exponential of base e formula).
The Exp function is an inverse function of the Log function.
Attention
-
Example
'!TITLE "Acquiring Exponential Function with Natural Logarithm Base"
' Acquire square with natural logarithm base
Sub Sample_Exp
Dim aaa As Integer
' Assign square with natural logarithm base to aaa
aaa = Exp( 2 )
' Display "1" on the message output window
PrintDbg aaa
End Sub
ID : 231