Get-Arctan
Command Description
Get the inverse tangent value of the attribute dNum
Command Prototype
dRet = Math.Atn(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.Atn(90)
TracePrint (dRet)
/**
dRet ≈ 1.5596856728973
*/