how to solve an equation iteratively?

3 ビュー (過去 30 日間)
Randy Chen
Randy Chen 2021 年 2 月 24 日
コメント済み: Randy Chen 2021 年 2 月 24 日
I need to solve the following equation and get a real number:
Below are my codes. When doing this, the solution returned are all complex values. How can I iteratively solve this equation such that x can be a real number? I already know the correct solution is about 7.78016, but I need to reproduce the procedure
syms x
eqn1 =200 == x*(1-(0.4*(x-1))/sqrt(2.8*2.4*x+0.4))^(-2.8/0.4);
sol = solve(eqn1,x)

採用された回答

Walter Roberson
Walter Roberson 2021 年 2 月 24 日
syms x
eqn1 =200 == x*(1-(0.4*(x-1))/sqrt(2.8*2.4*x+0.4))^(-2.8/0.4);
sol = solve(eqn1, x);
sol = sol(imag(sol) == 0)
sol = 
vpa(sol)
ans = 
7.7212920018186473025078617929192
  1 件のコメント
Randy Chen
Randy Chen 2021 年 2 月 24 日
thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by