How to suppress text output from a globalsearch run
2 ビュー (過去 30 日間)
古いコメントを表示
Suppressing output from, say, patternsearch, is simple enough:
options=optimset('Display','off')
However, I can't seem to figure out how to do something similar for a globalsearch run. I passed options (as written above) into the createOptimProblem structure but the text output remains. Can anyone point me in the right direction?
Cheers
0 件のコメント
採用された回答
Alan Weiss
2014 年 3 月 18 日
When you create your GlobalSearch solver pass the Display option:
gs = GlobalSearch('Display','off');
Alan Weiss
MATLAB mathematical toolbox documentation
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!