Returns the trigonometric COSine of real-exp (which is assumed to be expressed in RADIANS). To convert RADIANS to DEGREES, multiply the result by 57.29577951.
Program Example.
00100 LET A0 = 9 00110 PRINT COS(9),COS(A0) 00120 END
Try it