the code please for this quastion

1 view (last 30 days)
ayham mayyas
ayham mayyas on 27 Dec 2021
  5 Comments
John D'Errico
John D'Errico on 27 Dec 2021
Edited: John D'Errico on 27 Dec 2021
You wrote the code. At least for Gauss-Seidel. So submit it. What is the problem? If you are asking us to now write code for a Jacobi method, that is not why we re here, to do your assingment. Of course, we could do that. Would you like that? If so, then please tell us the name and address of your instructor. We will contact them directly, because we need to get credit for work that we do.
It might come up in idle conversation that you just posted your homework assignment online, and asked others to do your work for you, but I'm sure your instructor won't care. Or, would they? I might point out that many students who have done what you did, then asked to have their questions taken down, removed from Answers. One recent student said they might be kicked out of school if their questions were not removed. But your teacher would never do that to you, right?

Sign in to comment.

Answers (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 27 Dec 2021
(1) initialize the given linear system entries: A = [ ]; b = [];
(2) solve it using one of the following MATLAB's fcns: x = linsolve(A, b) or x = A\b or ...
(3) write a code to employ the task iterative methods - see an example https://www.mathworks.com/matlabcentral/fileexchange/73488-gauss-seidel-iterative-method
(4) compare their accuracy using MATLAB's fcn: norm()

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!