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

Run Example

sin( .3 );

Result: 0.295520206661339546183597803974407725036144256591796875

Additional Examples

Run Example

result = sin( 90 );
dump( result );

Last updated

Was this helpful?