the code please for this quastion
Ältere Kommentare anzeigen

5 Kommentare
Steven Lord
am 27 Dez. 2021
Since this is a homework assignment, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
ayham mayyas
am 27 Dez. 2021
Image Analyst
am 27 Dez. 2021
OK, We're going to asume that is your solution, and that it works. However since it's your own homework solution, you probably should not post it here, in case other students copy it and turn it in as their own, unless you still have a problem with it. If you do still have a problem with it then you should ask a question or give the error or something, because like I said, lacking that, we'll assume it works perfectly for you.
John D'Errico
am 27 Dez. 2021
Bearbeitet: John D'Errico
am 27 Dez. 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?
Antworten (1)
Sulaymon Eshkabilov
am 27 Dez. 2021
0 Stimmen
(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()
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!