Skip to main content

Get-E^x

Command Description

Get natural log e times dNum to the power

Command Prototype

dRet = Math.Exp(dNum)

Parameter Description

ParameterRequiredTypeDefaultDescription
dNumTruenumber0The data to process

return

dRet,The variable used to save the output of the command.

Demo

Dim   dRet 
dRet = Math.Exp(2)
TracePrint (dRet)
/**
dRet ≈ 7.3890560989307
*/