Azzera filtri
Azzera filtri

Algebra: Linear Equations

2 visualizzazioni (ultimi 30 giorni)
Wai Han
Wai Han il 25 Ott 2020
Commentato: Ameer Hamza il 25 Ott 2020
How can I solve this linear systems without using Symbolic toolbox?
a*x + b*y = c1
c*x + d*y + e*z = c2
f*y + g*z = c3
% where a,b,c,d,e,f,g and c1,c2,c3 are constants.
% I need to solve this for Kirchhoff's first law without the symbolic math toolbox.
Thank you so much.

Risposta accettata

Ameer Hamza
Ameer Hamza il 25 Ott 2020
If the value of these constants are known, then you can use mldivide: https://www.mathworks.com/help/matlab/ref/mldivide.html
a = 1;
b = 2;
c = 1.4;
d = 1.2;
e = 2.1;
f = 3.2;
g = 1.1;
c1 = 1;
c2 = 2;
c3 = 3;
A = [a b 0;
c d e;
0 f g];
B = [c1; c2; c3];
sol = A\B;
x = sol(1);
y = sol(2);
z = sol(3);
  2 Commenti
Wai Han
Wai Han il 25 Ott 2020
Thanks Ameer Hamza.
Ameer Hamza
Ameer Hamza il 25 Ott 2020
I am glad to be of help!

Accedi per commentare.

Più risposte (0)

Categorie

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

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by