atanhΒΆ

atanh calculates the hyperbolic arctangent.

r = atanh(m)

Return Value

r is the hyperbolic arctangent of m.

Parameters

m

m is a real or complex matrix.

Comment

Algorithm: 0.5 .* log ((1 + x) ./ (1 - x)).

id-338426