Solution of one variable parametric equation
1 view (last 30 days)
Show older comments
Muhammad Imran
on 24 Oct 2016
Commented: Muhammad Imran
on 24 Oct 2016
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
0 Comments
Accepted Answer
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.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!