Prevent function from printing to command window?
27 ビュー (過去 30 日間)
古いコメントを表示
Right now, I'm running simulations and fitting routines that repeatedly call a series of functions that I've downloaded but are not open-source (i.e. I can't edit or see how they work, although they are free to use, written specifically for Matlab, and available for anyone). Each of these functions prints comments to the command window almost every time it runs, which, I'm fairly certain, is slowing my simulations considerably. Is there some way of preventing a Matlab script or function from printing to the command window at all, and is this faster?
Briefly, I'll note that using a semicolon to suppress is not what I'm talking about – that's not the solution (FWIW I'm already doing this).
2 件のコメント
Geoff Hayes
2019 年 9 月 18 日
Brendan - do any of these functions allow an input to suppress the output? Can you provide a link to the code that you are using?
採用された回答
Daniel M
2019 年 10 月 3 日
編集済み: Daniel M
2019 年 10 月 3 日
doc evalc
1 件のコメント
Walter Roberson
2019 年 10 月 3 日
Yes, this should work. evalc() captures output that would normally go to the command window.
Note that it will capture everything, so if there are some parts you want to see as they happen, then you would need something more sophisticated.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!