Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Why do I keep getting an infinity loop when I try to implement the Jacobi method?

1 回表示 (過去 30 日間)
Ruten9
Ruten9 2015 年 12 月 6 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I derived B from this linear system:
1a - 1b + 2c= 8
1a + 1b + 2c = 10
1a + 0b + 1c = 2
clear all;clc;
c=[8 10 2]';
B= [0 1 -2;-1 0 -2;-1 0 0];
tol = 10^(-10);
x0=[1,1,1]'; x(:,1)= x0;
k=1;
while 1
xnew(:,k+1) = (B*x(:,k)) + c;
if norm(xnew(:,k+1)-x(:,1)) < tol
break;
end
x=xnew;
k=k+1;
end
k
  1 件のコメント
Walter Roberson
Walter Roberson 2015 年 12 月 6 日
How the heck does your B array relate to the system of equations you indicate? And why are you adding c instead of subtracting it?

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by