<< 向前        下一页 >>

ID : 9135

Exp

Function

A numeric operation function to calculate an exponential function (exponential of base e formula).

Syntax

Exp(number)

Guaranteed entry

number
Designate a 双精度实数型.

Return value

Return a 双精度实数型.

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.

Related Terms

Log, Log10

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 : 9135

<< 向前        下一页 >>