Skip to main content

Get-Natural-Log

Command Description

Get the natural logarithm of the attribute dNum

Command Prototype

dRet = Math.Ln(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.Ln(3)
TracePrint (dRet)
/**
dRet ≈ 1.0986122886681
*/