SIN( n )

Description:

This function returns the sine of the angle n. The angle n should be expressed in radians.

Usage:

  for t = 1 to 45
    print "The sine of "; t; " is "; sin(t)
  next t

Tip:

There are 2 * pi radians in a full circle of 360 degrees. A formula to convert degrees to radians is: radians = degrees divided by 57.29577951

Note: See also COS( ) and TAN( )