MATLAB: How to solve three complex equations

nmo

please find the attached file for an example of the system
Thanks in advance

Best Answer

Easy using matrix notation:
A = [1.46j,0.9j,-0.36j;0.36,-0.42,-1.345;0.9j,1.65j,0.42];
b = [1;0;1];
I = A\b
I =
-0.0059 - 0.4749i %I1
0.0079 - 0.3480i %I2
-0.0040 - 0.0184i %I3