Bonjour
s'il vous plait il ya un erreur il affiche seulement la premier solution au cours du temps cad ne varier pas la solution donc comment affiche les nouveau solution au cour du temps ??
Code:%% Gauss Method %% Solution of x in Ax=b using Gauss Seidel Method for t=1:1:10 G=9*t; A=[5*G 2;3 4]; b=[2*G 17]; x=[0 0]'; n=size(x,1); max1=1000; delta=0.00001; for k=1:max1 x_old=x; for i=1:n sigma=0; for j=1:i-1 sigma=sigma+A(i,j)*x(j); end for j=i+1:n sigma=sigma+A(i,j)*x_old(j); end x(i)=(1/A(i,i))*(b(i)-sigma) end k=k+1; normVal=norm(x_old-x); if (normVal<delta) break end end plot(tt,x(1),'v') end
-----