SIN (real-exp)

Returns the trigonometric SINe of the real-exp considered to be in radians. To convert RADIANS to DEGREES, multiply the result by 57.29577951. The accuracy is 0.00000001%.

Program Example

00100 REM The SIN function
00110 A0 = 9
00120 PRINT SIN(9),SIN(A0)
00130 END 

Try it