Skip to main content

Get-Tan

Command Description

Get the positive tangent value of the attribute dNum

Command Prototype

dRet = Math.Tan(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.Tan (30)
TracePrint (dRet)
/**
dRet ≈ -6.4053311966463
*/