Solving non linear system

 Risposta accettata

Star Strider
Star Strider il 21 Mar 2021
Use the Symbolic Math Toolbox:
syms x y
S = vpasolve([0 == x^3 + x^2 + x + 4 + 2*y;
0 == x + y - 3]);
x = S.x
y = S.y
.

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by