Filter löschen
Filter löschen

How to solve Simultaneous equations

50 Ansichten (letzte 30 Tage)
Mira
Mira am 25 Jun. 2024 um 19:22
Beantwortet: Walter Roberson am 25 Jun. 2024 um 19:55
3x+2y=0
x+y=4

Antworten (2)

Torsten
Torsten am 25 Jun. 2024 um 19:45
Verschoben: Torsten am 25 Jun. 2024 um 19:45
Write your equations as
A*z = b
for a 2x2-matrix A and a 2x1-vector b with z being the vector of unknowns [x;y].
To solve for z, you can then use "mldivide":

Walter Roberson
Walter Roberson am 25 Jun. 2024 um 19:55
sympref('FloatingPointOutput',0);
syms x y
eqn1 = 4*x - 3*y == 0
eqn1 = 
eqn2 = 3*x + 2*y == 4
eqn2 = 
sol = solve([eqn1, eqn2])
sol = struct with fields:
x: 12/17 y: 16/17

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by