필터 지우기
필터 지우기

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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by