i have 2 linear equations 2 unknowns
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
david edwards jr
il 23 Ago 2018
Commentato: Star Strider
il 23 Ago 2018
b0 = c0+3*c1 b1 = c0-5*c1 unknowns are c0 c1. b0,b1 are non variables which should appear in the solution.
thank you david
0 Commenti
Risposta accettata
Star Strider
il 23 Ago 2018
Using the Symbolic Math Toolbox:
syms b0 b1 c0 c1
Eq1 = b0 == c0+3*c1;
Eq2 = b1 == c0-5*c1;
[c0,c1] = solve(Eq1, Eq2)
produces:
c0 =
(5*b0)/8 + (3*b1)/8
c1 =
b0/8 - b1/8
4 Commenti
Star Strider
il 23 Ago 2018
My pleasure.
If my Answer helped you solve your problem, please Accept it!
Più risposte (1)
Vedere anche
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!