Why is this not working? And how to fix?

조회 수: 1 (최근 30일)
IBM watson
IBM watson 2018년 12월 20일
댓글: madhan ravi 2018년 12월 20일
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)

채택된 답변

madhan ravi
madhan ravi 2018년 12월 20일
편집: madhan ravi 2018년 12월 20일
x1v= double(results2.x1)
^--2 missed
x2v= double(results2.x2)
^--2 missed
  댓글 수: 2
IBM watson
IBM watson 2018년 12월 20일
:( Wow sorry for this.
Thanks!!
madhan ravi
madhan ravi 2018년 12월 20일
No problem .
Anytime :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by