Sin
Returns the sine of a number
Method Signature
Sin(number=[numeric])
Arguments
Argument
Type
Required
Description
Default
number
numeric
true
The number to calculate the sine of, entered in radians.
Examples
Sine of 0.3
sin( .3 );
Result: 0.295520206661339546183597803974407725036144256591796875
Additional Examples
result = sin( 90 );
dump( result );
Related
Last updated
Was this helpful?