How to disable dynare from printing on command window

Hi,

  1. You cannot currently suppress the preprocessor output.
  2. You can suppress the output of the check-command by putting

before the check-command
3. You can only avoid displaying the steady state results by
a) not using steady or
b)Replacing the line

disp_steady_state(M_,oo_); in steady.m by

if options_.noprint == 0 disp_steady_state(M_,oo_); end
In this case, putting

before steady and check will result in the suppression of output from both commands.