Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Equation of matrices, solve for variables?

1 view (last 30 days)
Brian
Brian on 23 May 2013
Closed: MATLAB Answer Bot on 20 Aug 2021
I want to solve for x, y, and If. The only unknowns.
syms x y If;
a=exp(-1i*2*pi/3);
Vpost=[x+a^2*y; x+a*y; x+y];
Zs=[j*0.1 0 0; 0; j*0.1, 0; 0, 0, j*0.3];
I=[a*If; a^2*If; If];
Vpre=[3; 0; 0];
solve this equation somehow for x, y, and If:
Vpost = Zs*I+Vpre;
I can rearrange the equation by hand and plug in the values to get the answer. However, I'm trying to do it for a 6 variable system in the end.
Any help is appreciated. Thank you!

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!