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!