Solve the system of equations using Cramer's Rule x+y+z=9,2x​+5y+7z=52,​.2x+y-z=0.

15 次查看(过去 30 天)
i want code for it
  6 个评论
Steven Lord
Steven Lord 2021-3-4
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 it's not homework, just solve the system using the \ operator.]
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.

请先登录,再进行评论。

采纳的回答

James Tursa
James Tursa 2021-3-4
编辑:James Tursa 2021-3-4
Original question:
Solve the system of equations using Cramer's Rule x+y+z=9,2x+5y+7z=52,.2x+y-z=0.
i want code for it
And the outline:
Did you read the algorithm description on the link I posted? The elements are as follows according to this link using the notation from the link:
Where is the matrix formed by replacing the i'th column of A by the column vector b.
You simply need to write a for-loop for this to calculate each according to the above. So your loop would look like this:
for i=1:_____
Ai = _____
x(i) = _____
end
You need to fill in the blanks.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by