Generate Code for quadprog
조회 수: 3 (최근 30일)
이전 댓글 표시
I am trying the example on this page https://www.mathworks.com/help/optim/ug/code-generation-for-quadprog-example.html
The code is :
function [x,fval] = test_quadp
H = [1,-1,1
-1,2,-2
1,-2,4];
f = [2;-3;1];
lb = zeros(3,1);
ub = ones(size(lb));
Aeq = ones(1,3);
beq = 1/2;
x0 = zeros(3,1);
opts = optimoptions('quadprog','Algorithm','active-set');
[x,fval] = quadprog(H,f,[],[],Aeq,beq,lb,ub,x0,opts)
When I type the command : codegen -config:mex test_quadp.
it will shows error:Function 'optimoptions' not supported for code generation.
I have updated matlab to 2020b, why this problem still occurs.
Thanks.
댓글 수: 1
Uday Pradhan
2021년 1월 8일
Hi,
What was the previous version of MATLAB that you were using? Also, could you attach a screenshot of the output of "ver" command here? Thanks!
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle Swarm에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!