how to calculate hyperbolic cosine

Hi everyone, I have an equation -> y=[cosh(ak)/cos(bk)]^2
I know y, a and b. then, How can I calculate 'k' in the matlab?
I have so many data so that I have to calculate in matlab Please help.
thank you

 Accepted Answer

syms k
a = rand ;
b = rand ;
y = rand ;
eqn = y^2==(cosh(a*k)/cosh(b*k))

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Asked:

on 16 Jul 2018

Edited:

on 7 Aug 2018

Community Treasure Hunt

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

Start Hunting!