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
0 件のコメント
採用された回答
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.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!