フィルターのクリア

Solution of one variable parametric equation

2 ビュー (過去 30 日間)
Muhammad Imran
Muhammad Imran 2016 年 10 月 24 日
コメント済み: Muhammad Imran 2016 年 10 月 24 日
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 Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by