How to solve Matrix that consists of a variable
43 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
KEDI YAN
el 15 de Jul. de 2020
Comentada: Star Strider
el 16 de Jul. de 2020
I have a Matrix like below
In this matrix, only the Z23 and Z32 are unknown, and Z23 = Z32. I had mannuly solved it and got the equation shown below
I was wondering if MATLAB can help me do such a calculation?
0 comentarios
Respuesta aceptada
Star Strider
el 15 de Jul. de 2020
syms Vs
Iv = sym('I',[4 1]);
Zm = sym('Z', [4 4]);
Zm(1,[3 4]) = 0;
Zm(2,4) = 0;
Zm(3,1) = 0;
Zm(4,[1 2]) = 0;
Vv = [Vs; 0;0;0];
RHS = Zm*Iv;
S = linsolve(Zm, Vv)
.
4 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!