Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Optimization with symbolic math
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
I want to find the values of c0, c1, c2 maximizing
 f = sym('-((c1-a)*ln(c1-a)-(c1-a))/3+(c1*lnc1-c1)/3-((c2-b)*ln(c2-b)-(c2-b))/6+(c2*lnc2-c2)/6+(1+h10+h20)*lnc0
subject to the following constraints
 g = sym('c0(1+h10+h20)+h11c1+h22c2=3*h11+6*h22')
 h10 = 1 - (c1-c0)/3
 h11 = (c1-c0)/3 
 h20 = 1 - (c2-c0)/6
 h22 = (c2 - c0)/6
All values of C is between 1 and 6.
How do I do this in MatLab?
댓글 수: 0
답변 (1개)
  Sean de Wolski
      
      
 2013년 11월 1일
        Do you need to solve this symbolically or would using one of the numerical solvers like fmincon or patternsearch work for you?
doc fmincon
doc patternsearch
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

