Filter löschen
Filter löschen

how do you find solutions of this marix equation using matlab 2019

1 Ansicht (letzte 30 Tage)
how to find solutions of this matrix using matlab 2019.
Ax = b
A = [3.8 -7.8;8.4 -16.8;-12.9 -41.4]
b = [1.3;2.8;-4.3]

Akzeptierte Antwort

Rik
Rik am 25 Feb. 2020
Let's first do some algebra, and then solve it with a oneliner:
%{
Ax = b
A\Ax = A\b (A\A = 1)
x = A\b
%}
A = [3.8 -7.8;8.4 -16.8;-12.9 -41.4];
b = [1.3;2.8;-4.3];
x=A\b

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by