フィルターのクリア

Solve a system of nonlinear equations symbolically

2 ビュー (過去 30 日間)
Aleem Andrew
Aleem Andrew 2020 年 10 月 21 日
コメント済み: Aleem Andrew 2020 年 10 月 22 日
The following code is meant to solve a system of nonlinear equations.
syms do K
eq1 =(5e-5)^2 - (do)^2 == K*25*60;
eq2 = (7.5e-5)^2 - (do)^2 == K*98*60;
sol = solve(eq1,eq2);
fprintf("%s%f\n%s%f","do: ",sol.do,"K: ",sol.K)
The output is
do: -0.000038
9211259166826217642^(1/2)/80264348827648NaN755578637259143/10590190179824151570426101760.000000
do is correctly formatted but despite the format specficiation K is formatted incorrectly and the string "K: " is not displayed. Can someone explain why this is happening?

採用された回答

Walter Roberson
Walter Roberson 2020 年 10 月 21 日
You have a polynomial system. MATLAB is finding all solutions. Your format is only expecting one solution.
  1 件のコメント
Aleem Andrew
Aleem Andrew 2020 年 10 月 22 日
Thank you for your help

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by