How to solve linear equation

62 visualizzazioni (ultimi 30 giorni)
Khandaker Hassin Sadman
Khandaker Hassin Sadman il 8 Apr 2022
Risposto: Ayush Singh il 13 Lug 2022
  2 Commenti
Riccardo Scorretti
Riccardo Scorretti il 8 Apr 2022
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 il 8 Apr 2022
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.

Accedi per commentare.

Risposte (1)

Ayush Singh
Ayush Singh il 13 Lug 2022
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 = 

Categorie

Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by