Clear Filters
Clear Filters

Solution of one variable parametric equation

2 views (last 30 days)
Dear colleagues,
I have an equation of the form x=c.tanh(a.x), where a and c are constants. I may ask for your kind suggestions to find the solution of equation.
Best regards, Imran

Accepted Answer

Torsten
Torsten on 24 Oct 2016
a=...;
c=...;
f=@(x)(x-c*tanh(a*x));
sol=fzero(f,1);
sol
By the way: x=0 is a solution.
Best wishes
Torsten.
  1 Comment
Muhammad Imran
Muhammad Imran on 24 Oct 2016
Dear Torsten,
Thank you for your quick response!
I achieve the roots of equation near to what I expect. Here, I presented very simple form of equation, the actual equation is rather quite complex.
Best regards, Imran

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!