Get-Tan
Command Description
Get the positive tangent value of the attribute dNum
Command Prototype
dRet = Math.Tan(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.Tan (30)
TracePrint (dRet)
/**
dRet ≈ -6.4053311966463
*/