Documentation

asin

Inverse sine in radians

Syntax

Description

example

Y= asin(X)returns theInverse Sine(sin-1) of the elements ofXin radians. The function accepts both real and complex inputs.

  • For real values ofXin the interval [-1, 1],asin(X)returns values in the interval [-π/2, π/2].

  • For real values ofXoutside the interval [-1, 1] and for complex values ofX,asin(X)returns complex values.

Examples

collapse all

Find the inverse sine of a value.

y = asin(1)
y = 1.5708

Find the inverse sine of the elements of vectorx. Theasinfunction acts onxelement-wise.

x = [0.5i 1+3i -2.2+i]; y = asin(x)
y =1×3 complex0.0000 + 0.4812i 0.3076 + 1.8642i -1.1091 + 1.5480i

Plot the inverse sine function over the intervals - 1 x 1 .

x = -1:.01:1; plot(x,asin(x)) gridon

Input Arguments

collapse all

Sine of angle, specified as a scalar, vector, matrix, or multidimensional array. Theasinoperation is element-wise whenXis nonscalar.

Data Types:single|double
Complex Number Support:Yes

More About

collapse all

Inverse Sine

The inverse sine is defined as

sin 1 ( z ) = i log [ i z + ( 1 z 2 ) 1 / 2 ] .

Extended Capabilities

See Also

|||

Introduced in R2006a