solve by the matrix method
古いコメントを表示
x1+2x2-x3+x4=28
2x1+4x2-3x3+x4=55
-4x1+8x2-12x3-x4=-93
-x1+16x2+x3+2x4=-7
1 件のコメント
Torsten
2023 年 11 月 16 日
What do you call "the matrix method" ?
回答 (2 件)
Dyuman Joshi
2023 年 11 月 16 日
0 投票
Use mldivide, \
Solving it symbolically —
syms x1 x2 x3 x4
Eqns = [x1+2*x2-x3+x4==28
2*x1+4*x2-3*x3+x4==55
-4*x1+8*x2-12*x3-x4==-93
-x1+16*x2+x3+2*x4==-7]
[A,b] = equationsToMatrix(Eqns)
x1x2x3x4 = linsolve(A,b)
.
カテゴリ
ヘルプ センター および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


