Matrix multiplication using inv()
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
It says my dimensions don't agree....can anyone help me please
B = [1 1 1 0;-.204 -.068 -4.36 1.6;.042 .005 16.45 -13.95; -.008 -.0003 -49.4 87.15];
I = [4 -3 0 1];
A = inv(B)*I
Antworten (2)
Azzi Abdelmalek
am 12 Sep. 2014
A = inv(B)*I'
Matt J
am 12 Sep. 2014
A = B\I.'
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!