sir, Output seems to be Jacobi here, because u are not updating X(1:k-1) for gauss method
@barstemel46335 жыл бұрын
how could we use relaxation constant in this method
@abhishekchaudhary97923 жыл бұрын
How is Matrix "As" diagonally dominant ??????
@teddyokolo43123 жыл бұрын
exactly!
@Youtube_litee3 жыл бұрын
In diagonally dominant matrix sum of the diagonal element is greater than absolute sum of the remaining entries of that raw but the matrix example sir used in lecture is not diagonally dominant ig
@PawanKumarNITK4 жыл бұрын
Thank you so much, Sir.
@samuelu72794 жыл бұрын
How can we solve N by N matrix?
@syahmiafif2654 жыл бұрын
Can someone help me how to solve this equation using Jacobi Iteration please
@rakesh_velpur2 жыл бұрын
try this for AX=B (A - diagonally dominant) while(true) dummy=X; X=(B-((A-diag(diag(A)))*X))./diag(A); if (max(abs(X-dummy))