How to expand matrix to an equation?

49 ビュー (過去 30 日間)
Conrad Suen
Conrad Suen 2016 年 2 月 1 日
コメント済み: Star Strider 2016 年 2 月 1 日
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!

採用された回答

Star Strider
Star Strider 2016 年 2 月 1 日
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
  2 件のコメント
Conrad Suen
Conrad Suen 2016 年 2 月 1 日
It worked thanks!
Star Strider
Star Strider 2016 年 2 月 1 日
My pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by