Filter löschen
Filter löschen

Solve a system of nonlinear equations symbolically

2 Ansichten (letzte 30 Tage)
Aleem Andrew
Aleem Andrew am 21 Okt. 2020
Kommentiert: Aleem Andrew am 22 Okt. 2020
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Okt. 2020
You have a polynomial system. MATLAB is finding all solutions. Your format is only expecting one solution.

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by