Get-Sine
Command Description
Get the sine value of the attribute dNum
Command Prototype
dRet = Math.Sin(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.Sin(90)
TracePrint (dRet)
/**
dRet ≈ 0.89399666360056
*/