Sine of argument in radians
Y = sin(X)
example
Y = sin(X) returns the sine of the elements of X. The sin function operates element-wise on arrays. The function accepts both real and complex inputs.
Y
X
sin
For real values of X, sin(X) returns real values in the interval [-1, 1].
sin(X)
For complex values of X, sin(X) returns complex values.
collapse all
Plot the sine function over the domain -π≤x≤π.
x = -pi:0.01:pi; plot(x,sin(x)), grid on
Calculate the sine of the complex angles in vector x.
x
x = [-i pi+i*pi/2 -1+i*4]; y = sin(x)
y = 1×3 complex 0.0000 - 1.1752i 0.0000 - 2.3013i -22.9791 +14.7448i
Input angle in radians, specified as a scalar, vector, matrix, or multidimensional array.
Data Types: single | double Complex Number Support: Yes
single
double
Sine of input angle, returned as a real-valued or complex-valued scalar, vector, matrix or multidimensional array.
The sine of an angle, α, defined with reference to a right angled triangle is
sin(α)=opposite sidehypotenuse=ah .
The sine of a complex argument, α, is
sin(α)=eiα−e−iα2i .
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports GPU arrays. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
asin | asind | sind | sinh | sinpi
asin
asind
sind
sinh
sinpi
You have a modified version of this example. Do you want to open this example with your edits?