MATLAB: Reversing the inverse hyperbolic sine function

data

Y = asinh(X)
to get Y which is the inverse hyperbolic sine value. I have Y , how can I get x?

Best Answer

MATLAB also has hyperbolic sin sinh() function.
y = asinh(x);
sinh(y)
sinh(y) will give back x.
Related Question