trunk dynare.m: completed help message

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2456 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2009-03-12 11:20:49 +00:00
parent b502d94145
commit 0787228a9d
1 changed files with 7 additions and 4 deletions

View File

@ -37,18 +37,21 @@ if strcmpi(fname,'help')
disp(' ')
disp(['This is dynare version ' dynare_version() '.'])
disp(' ')
disp('USAGE: dynare FILENAME [.mod,.dyn] [OPTIONS]')
disp('USAGE: dynare FILENAME[.mod,.dyn] [OPTIONS]')
disp(' ')
disp('dynare executes instruction included in FILENAME.mod.')
disp(' ')
disp('OPTIONS:')
disp(' o noclearall: By default, dynare will issue a clear all command to Matlab or Octave,')
disp(' o noclearall: By default, dynare will issue a clear all command to Matlab or Octave,')
disp(' thereby deleting all workspace variables; this options instructs dynare')
disp(' not to clear the workspace.')
disp(' o savemacro: Instructs dynare to save the intermediary file which is obtained after')
disp(' macro-processing; saved output will go in FILENAME -macroexp.mod.')
disp(' o debug: Instructs the preprocessor to write some debugging informations about the')
disp(' scanning and parsing of the .mod file.')
disp(' o notmpterms: Do not include temporary terms in the generated static and dynamic files')
disp(' o savemacro[=MACROFILE]: Instructs dynare to save the intermediary file which is obtained')
disp(' after macro-processing.')
disp(' By default, saved output will go in FILENAME-macroexp.mod (where FILENAME is')
disp(' taken from the mod file), but you can specify another filename.')
disp(' ')
return
end