Why does matlab's quadratic programming toolbox output specific iteration information every 5 steps
古いコメントを表示
This is my code, and deltaU0 is initial value,I would like to get the result of each iteration of the quadratic programming active set method and store it in the workspace. But now it prints on the command line and it prints the iteration info every five steps instead of every step.
options = optimoptions('quadprog','Algorithm','active-set','Display','iter-detailed');
[deltaU,fval,exitflag,output]=quadprog(W,f,G,g,[],[],[],[],deltaU0,options);
Here is a screenshot of the output from the command line。

回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Problem-Based Optimization Setup についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!