How to solve Matrix that consists of a variable
10 ビュー (過去 30 日間)
古いコメントを表示
I have a Matrix like below
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/332312/image.jpeg)
In this matrix, only the Z23 and Z32 are unknown, and Z23 = Z32. I had mannuly solved it and got the equation shown below
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/332315/image.jpeg)
I was wondering if MATLAB can help me do such a calculation?
0 件のコメント
採用された回答
Star Strider
2020 年 7 月 15 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!