asinhInverse hyperbolic sine in radians
asinh(A)A should be an array, which can be complex or real.A.A, it returns real values. (See example below.)A, it returns complex numbers.A.x=linspace(-100,100);
y=asinh(x);
plot(x,y,'.-');
xlabel('x')
ylabel('asinh(x) in radians')
