MATLAB: How can i solve a circuit with 2 loops and 2 sources in matlap ( finding I1 and I2)

loopsMATLABmatrixsymbolicSymbolic Math Toolbox

format compact
clc
clear
syms I1 I2 s
solve(2*s*I1+I1-I2+1/s*I1-1/s*I2==1/s,1/s*I2-1/s*I1+I2+3*I2+s*I2==-2/s,I1,I2);
disp(I1,I2);
the code doesn't print anything .. please help 🙁
(THE WRITTEN IN THE CODE IS THE LOOPS OF THE CIRCUITS )

Best Answer

[I1,I2]=solve(2*s*I1+I1-I2+1/s*I1-1/s*I2==1/s,1/s*I2-1/s*I1+I2+3*I2+s*I2==-2/s,I1,I2) % no semicolons at the end