フィルターのクリア

How to solve these 4 equations

1 回表示 (過去 30 日間)
Yoshi
Yoshi 2016 年 1 月 22 日
回答済み: Star Strider 2016 年 1 月 22 日
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.

採用された回答

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by