MATLAB: How to solve this equation

matrix equation

Hi there,
This should be an easy question but somehow it doesn't work…
How can I solve this using matrices?
3x-2y=17 5x+3y=3
Thanks for any solutions!

Best Answer

This is actually very simple using the \ operator, see mldivide,\ documentation
A = [3, -2; 5, 3];
b = [17, 3]';
A\b