I wonder if there is any way how to made MATLAB solve the system of equation as this:
$ s\cdot x_1 = \frac {R_1L_2}{M^2-L_1L_2} x_1+ \frac {MR_2}{M^2-L_1L_2} x_2+\frac {M}{M^2-L_1L_2} x_3 - \frac {L_2}{M^2-L_1L_2} u + \frac{R_2M(M-L_1L_2-1)}{R1L2(L_1L_2-M^2)}+\frac{10}{R_1}$
$s \cdot x_2 = \frac{R_1M^2}{M(M^2-L_1L_2)} x_1 + \frac{L_1R_2}{M^2-L_1L_2}x_2 + \frac{L_1}{M^2-L_1L_2}x_3 - \frac{M}{M^2-L_1L_2} u$
$s \cdot x_3 = \frac1{C_1} x_2 + \frac{R_2}{L_1L_2-M^2}$
with the respect to $x_1$, $x_2$ and $x_3$. Others letters are parameters.
When I write intructions like this:
syms M L1 L2 R1 R2 C x1 x2 x3 C u
x=['x1', 'x2', 'x3'];
solve(['(M*x3)/(M^2 - L1*L2) - (L2*u)/(M^2 - L1*L2) + (L2*R1*x1)/(M^2 - L1*L2) + (M*R2*x2)/(M^2 - L1*L2)=s*x1-((R2*M(M-L1*L2-1))/(R1*L2(L1*L2-M^2))+10/R1)', '(L1*x3)/(M^2 - L1*L2) - (M*u)/(M^2 - L1*L2) + (R1*x1)/(M^2 - L1*L2) + (L1*R2*x2)/(M^2 - L1*L2)=s*x2', 'x2/C1=s*x3-R2/(L1*L2-M^2)'], x, 'VectorFormat')
The result is
Warning: 1 equations in 2 variables. New variables might be introduced.
In C:\Program Files\MATLAB\R2012b\toolbox\symbolic\symbolic\symengine.p>symengine at 54 In mupadengine.mupadengine>mupadengine.evalin at 97 In mupadengine.mupadengine>mupadengine.feval at 150 In solve at 160 In lap_matr at 5 Warning: Explicit solution could not be found. In solve at 169 In lap_matr at 5
ans =
[ empty sym ]
Is there any way and which one?