Doing back sunstitution for Gauss Elimination
6 次查看(过去 30 天)
显示 更早的评论
I have Anew=[2 1 -1;0 2.5 -1.5;0 0 2.4] and bnew=[0;-3;4.8]
using back substitution only i need to find my x1, x2 and x3 values. I cant use inv(Anew)*bnew or rref() i need my program to use back projection. I think i need a for loop or something but i'm stuck and out of ideas at the moment please help. answers should be...
x1=1
x2=0
x3=2
0 个评论
回答(1 个)
Jan
2013-9-30
编辑:Jan
2013-9-30
Write down the equation on paper at first (I omit the "new" here):
A * x = b
[2 1 -1; [x1; [0;
0 2.5 -1.5; * x2; = -3;
0 0 2.4] x3] 4.8]
You have a triangle matrix on the left, such the back-substitution can be applied directly. Start to solve the last row to get x3:
0*x1 + 0*x2 + 2.4*x3 = 4.8
Use the result to solve the 2nd last row to get x2 and so on. A short look into WikiPedia might be useful also.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!