How to suppress messages/warnings from a script?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I use fsolve(...); within a big loop (10^9 iterations). However I can't supress the message:
"No solution found.
fsolve stopped because the last step was ineffective. However, the vector of function values is not near zero, as measured by the default value of the function tolerance. "
but I think that this output significantly slows down the process. I already used warnings off, but that doesn't help. Any ideas?
Best, Christian
0 件のコメント
採用された回答
Stephan
2018 年 10 月 15 日
Hi,
try:
options = optimoptions ('fsolve', 'Display', 'none');
result = fsolve (your_input_to_fsolve , options);
This should turn off the messages.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!