How to expand matrix to an equation?

9 visualizzazioni (ultimi 30 giorni)
How would I expand this matrix to equations? I do not know if there is a pre-existing function to do this(reverse of equationsToMatrix??) I have attached the question as well. Thanks!

Risposta accettata

Star Strider
Star Strider il 1 Feb 2016
Straightforward:
syms x y
Eqn1 = [1 4; 2 3]*[x; y] == [1; -2];
Eqn2 = simplify(Eqn1)
Eqn2 =
x + 4*y == 1
2*x + 3*y == -2

Più risposte (0)

Categorie

Scopri di più su Spline Postprocessing in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by