acoshInverse hyperbolic cosine in radians
acosh(A)A should be an array, which can be complex or real.A.A lying in A smaller than 1, it returns complex numbers.A.x=linspace(1,100);
y=acosh(x);
plot(x,y,'.-');
xlabel('x')
ylabel('acosh(x) in radians')
