MATLAB: Solving two equations with 4 unknowns

equationsno apparent urgencyurgent

Hello all,
Can you please tell me how can I solve 4 equations with 2 unknowns in MATLAB?

Best Answer

Edited: Walk before you run:
syms x y
results = solve('3*x+y=9','x-7*y=-3',x,y)
results.x
results.y
look at
doc solve
to learn more.