Can a MATLAB script run silently?

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

or fprintf!
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

Thanks. That's a good trick too.
cool exactly what I was looking for!

Sign in to comment.

Categories

Products

Asked:

on 14 Mar 2011

Community Treasure Hunt

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

Start Hunting!