Get-E^x
Command Description
Get natural log e times dNum to the power
Command Prototype
dRet = Math.Exp(dNum)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
dNum | True | number | 0 | The 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
*/