Azzera filtri
Azzera filtri

How to solve these 4 equations

1 visualizzazione (ultimi 30 giorni)
Yoshi
Yoshi il 22 Gen 2016
Risposto: Star Strider il 22 Gen 2016
Hello, I'm trying to solve these set of 4 equations and am unsure how to write them up in matlab. So far this is what I've tried with no luck:
syms a b c d
e1=a+d==1;
e2=2*a+b+2*c+d==5;
e3=2*b==2;
e4=(d/(a+b+c+d))^2*(c/(a+b+c+d))/(a/(a+b+c+d))==exp(-2.222)/5;
[e1,e2,e3,e4] = solve(e1, e2, e3, e4);
I am very much a beginner at Matlab for reference so am unsure how to solve this besides pressing the run key.

Risposta accettata

Star Strider
Star Strider il 22 Gen 2016
I would use the vpasolve function to get a numeric result:
[a,b,c,d] = vpasolve([e1, e2, e3, e4], [a,b,c,d]);

Più risposte (0)

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