Solution of one variable parametric equation

1 次查看(过去 30 天)
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

采纳的回答

Torsten
Torsten 2016-10-24
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 个评论
Muhammad Imran
Muhammad Imran 2016-10-24
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by