Why is this not working? And how to fix?

1 view (last 30 days)
When i run this code, I get an error message about x1.
syms x1 x2 c1 c2 c3
eq1= c1-c3==0;
eq2= c2-c3==0;
eq3= c1+c2+c3==1;
results= solve(eq1, eq2, eq3);
c1v= double(results.c1)
c2v= double(results.c2)
c3v= double(results.c3)
min=((1/c1v)^c1v)*((1/c2v)^c2v)*((1/c3v)^c3v)
eq4= x1/x2==1;
eq5= x1*(x2^2)==1;
results2= solve(eq4, eq5);
x1v= double(results.x1)
x2v= double(results.x2)

Accepted Answer

madhan ravi
madhan ravi on 20 Dec 2018
Edited: madhan ravi on 20 Dec 2018
x1v= double(results2.x1)
^--2 missed
x2v= double(results2.x2)
^--2 missed

More Answers (0)

Categories

Find more on Time Series in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!