Can a MATLAB script run silently?

15 views (last 30 days)
Tesi
Tesi on 14 Mar 2011
I want to run a script in MATLAB without the script displaying a lot of stuff. I'm looking for the equivalent of the instruction "@echo off" that can be used to run batch files in Windows.

Accepted Answer

Matt Fig
Matt Fig on 14 Mar 2011
Why would the script be displaying anything? Go through the script and make sure there are no calls to DISP, and every line ends in a semi-colon. Then the script shouldn't be dumping anything to the command line.
  2 Comments
Tesi
Tesi on 14 Mar 2011
Yeah, the old trick of the semicolon. Thanks!

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 14 Mar 2011
evalc() the script and throw away the output.
  2 Comments
Tesi
Tesi on 14 Mar 2011
Thanks. That's a good trick too.
Aurelien Queffurust
Aurelien Queffurust on 5 Feb 2013
cool exactly what I was looking for!

Sign in to comment.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!