How can i write optimal control objective with fmincon?
조회 수: 1 (최근 30일)
이전 댓글 표시
and my constraint is:
댓글 수: 0
채택된 답변
Matt J
2019년 10월 4일
편집: Matt J
2019년 10월 4일
Same as any objective...
Knowns=[lambda1,lambda2];
Jfun=@(Unknowns) objective(Unknowns,Knowns);
fmincon(Jfun , InitialGuess,[],[],[],[],lb,ub )
function J=objective(Unknowns,Knowns)
x=Unknowns(1:N);
u=Unknowns(N+1:M);
eps=Unknowns(M+1);
lambda1=Knowns(1);
lambda2=Knowns(2);
J=lambda2*eps^2+___________;
end
댓글 수: 2
Matt J
2019년 10월 4일
You're welcome, but please Accept-click the answer if your question has been resolved.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Model Predictive Control Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!