Effacer les filtres
Effacer les filtres

System of equations problem help

2 vues (au cours des 30 derniers jours)
Matthew Lozancich
Matthew Lozancich le 11 Nov 2017
Commenté : Star Strider le 11 Nov 2017
function output=find_current(a,e,c,d)
V=a;
R1=e;
R2=c;
R3=d;
A=[-1 1 1 0; 0 1 1 -1; R1 0 R3 0; R1 R2 0 0];
b=[0 0 V V]';
output=(A/b);
end
Why is the transpose not working on the b matrix?

Réponse acceptée

Star Strider
Star Strider le 11 Nov 2017
Guessing here. You may want this instead:
output = A\b;
  2 commentaires
Matthew Lozancich
Matthew Lozancich le 11 Nov 2017
OMG..I'm so dumb haha.. thank you..
Star Strider
Star Strider le 11 Nov 2017
As always, my pleasure.
If my Answer helped you solve your problem, please Accept it!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by