reversing the inverse hyperbolic sine function

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

Accepted Answer

Ameer Hamza
Ameer Hamza on 13 Aug 2018
MATLAB also has hyperbolic sin sinh() function.
y = asinh(x);
sinh(y)
sinh(y) will give back x.

More Answers (1)

Stephan
Stephan on 13 Aug 2018
Edited: Stephan on 13 Aug 2018
Hi,
if you have symbolic math toolbox use finverse to do this for the general case of finding inverse functions.
Best regards
Stephan

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!