Solving non linear system

 Accepted Answer

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
.

More Answers (0)

Categories

Products

Community Treasure Hunt

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

Start Hunting!