Linear algebra Equation Learning
古いコメントを表示
If I am following along a text book to learn linear equations; how do I get my variable to update without reentering it?
a=[1 5 7] %setup row 1
b=[-2 -7 -5] %setup row 2
y=[a;b] %setup matrix
c=a*2 %setup var c to multiply all of a by 2
b=b+c %add c to b
y
at this point, y is still [1 5 7;-2 -7 -5]
how do I get y to update automatically? I don't want to have reenter it every time?
I just started my linear algebra course and I want to use MATLAB to learn it. I am not interested in just blindly solving the equations automatically.
Please help!! ;)
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Mathematics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!