Skip to main content

Get-Sine

Command Description

Get the sine value of the attribute dNum

Command Prototype

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