How to solve linear equation

조회 수: 39 (최근 30일)
Khandaker Hassin Sadman
Khandaker Hassin Sadman 2022년 4월 8일
답변: Ayush Singh 2022년 7월 13일
  댓글 수: 2
Riccardo Scorretti
Riccardo Scorretti 2022년 4월 8일
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에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by