acosΒΆ

acosh calculates the arccosine.

r = acos(m)

Return Value

r is the arccosine of the matrix m.

Parameters

m

m is a real or complex matrix.

Comment

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

id-1076924