Optimoptions set both Display AND Parallel properties
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm using quadprog and I want 2 things:
- Use the parallel toolbox
- Suppress all text outputs, since I'm using quadprog in a loop, and I don't want it to diplay stuff.
I can solve problem 1 using optimoptions and problem 2 using optimset. But apparently there is no way of solving 1 and 2 simultaneusly, as quadprog accepts either an optimset object or an optimoptions object, not both.
Any ideas?
Thanks.
댓글 수: 0
채택된 답변
Steven Lord
2019년 5월 20일
You can't solve problem 1 using either optimset or optimoptions.
The Optimization Toolbox options reference page shows that UseParallel is not used by quadprog. optimset will return a struct array with that field present, and you can change that field if you like, but quadprog doesn't do anything with that field if you pass that options structure into it. As one check of this, the word "parallel" does not appear at all on the quadprog documentation page.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multiobjective Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!