asinΒΆ

asin calculates the ac arcsine.

r = asin(m)

Return Value

r is the arcsine of m.

Parameters

m

m is a real or complex matrix.

Comment

Algorithm: -1i .* log (1i .* x + sqrt(1 - x .* x)).

id-1210848