SIN( ) |
Return Sine |
SIN(num[,ERR=stmtref])
Where:
num |
Value whose sine is to be returned. Numeric expression. |
stmtref |
Program line number or statement label to which to transfer control. |
Note: |
Numeric, range -1 to 1.
The SIN( ) function returns the sine of the numeric expression specified. It will return a numeric value between -1 and 1, rounded to the current PRECISION in effect. Its inverse function is ASN( ) Return Arc-Sine.
print 'CS'
X=0,Y=80
LASTX=0,LASTY=80
for I=-15 to 1 step .5
X=X+25
Y=50*sin(I)+80
print 'line'(LASTX,LASTY,X,Y)
LASTX=X
LASTY=Y
next