Skip to main content

Get-Arctan

Command Description

Get the inverse tangent value of the attribute dNum

Command Prototype

dRet = Math.Atn(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.Atn(90)
TracePrint (dRet)
/**
dRet ≈ 1.5596856728973
*/