Commands by Category:
Index:
Returns the sine of its argument.
sin
x (NxK matrix or N-dimensional array) – data
y (NxK matrix or N-dimensional array) – contains the sine of x.
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()
previous
sinh
next
skewness