atanhInverse hyperbolic tangent in radians
atanh(A)A should be an array, which can be complex or real.A.A lying in A with absolute values greater than 1, it returns complex numbers.A.x=linspace(-1,1);
y=atanh(x);
plot(x,y,'.-');
xlabel('x')
ylabel('atanh(x) in radians')
