How to solve linear equation

21 次查看(过去 30 天)
  2 个评论
Riccardo Scorretti
Rewrite the linear system by using the matrix formalism Ax = b (you can define A and b in the usual way). Then use the operator \ to compute the solution
Steven Lord
Steven Lord 2022-4-8
This sounds like a homework assignment. If it is, 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 free 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.

请先登录,再进行评论。

回答(1 个)

Ayush Singh
Ayush Singh 2022-7-13
Hi Khandaker, from your question I understand you want to solve a system of linear equations.
Firstly declare the system of equations.
syms x y z
eqn1 = 2*x + y + 5*z == 10;
eqn2 = 4*x + 2*y + 5*z == 16;
eqn3 = 3*x + 3*y + 8*z == 7;
Now solve the system of equations using solve. The inputs to solve are a vector of equations, and a vector of variables to solve the equations for.
sol = solve([eqn1, eqn2, eqn3], [x, y, z]);
xSol = sol.x
xSol = 
ySol = sol.y
ySol = 
zSol = sol.z
zSol = 

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by