Returns the sine of its argument.
sin
x = { 0, .5, 1, 1.5 }; y = sin(x); print y;
0.000000 0.479426 0.841471 0.997495
For real data, x should contain angles measured in radians.
To convert degrees to radians, multiply the degrees by \(\pi/180\).
See also
Functions atan(), cos(), sinh(), pi()
atan()
cos()
sinh()
pi()