Fixed indentation and removed tabs.

time-shift
Stéphane Adjemia (Scylla) 2018-12-01 22:56:11 +01:00
parent 50a9ea718b
commit 8eeddf996a
Signed by untrusted user who does not match committer: stepan
GPG Key ID: A6D44CB9C64CE77B
1 changed files with 290 additions and 292 deletions

View File

@ -26,7 +26,7 @@ GNU Octave instructions are generated; in the second step, the program
actually runs the computations. Both steps are triggered automatically
by the ``dynare`` command.
.. matcomm :: dynare FILENAME[.mod] [OPTIONS…]
.. matcomm:: dynare FILENAME[.mod] [OPTIONS…]
This command launches Dynare and executes the instructions
included in ``FILENAME.mod``. This user-supplied file contains the
@ -39,12 +39,10 @@ by the ``dynare`` command.
file``. By default (unless ``use_dll`` option has been given to
``model``), the preprocessor creates three intermediary files:
- ``filename.m``
Contains variable declarations, and computing tasks.
- ``FILENAME_dynamic.m``
Contains the dynamic model equations. Note that Dynare might
@ -81,7 +79,9 @@ by the ``dynare`` command.
equation with respect to the jth model variable in declaration
order.
These files may be looked at to understand errors reported at the simulation stage.
These files may be looked at to understand errors reported at the
simulation stage.
``dynare`` will then run the computing tasks by executing ``FILENAME.m``.
@ -312,7 +312,8 @@ by the ``dynare`` command.
1. there are more endogenous variables than equations.
2. an undeclared symbol is assigned in ``initval`` or ``endval``.
3. exogenous variables were declared but not used in the ``model`` block.
3. exogenous variables were declared but not used in the
``model`` block.
.. option:: fast
@ -353,12 +354,11 @@ by the ``dynare`` command.
Depending on the computing tasks requested in the ``.mod`` file,
executing the ``dynare`` command will leave variables containing
results in the workspace available for further processing. More
details are given under the relevant computing tasks. The ``M_,
oo_``, and ``options_`` structures are saved in a file called
``FILENAME_results.mat``. If they exist, ``estim_params_,
bayestopt_, dataset_, oo_recursive_`` and ``estimation_info`` are
saved in the same file.
details are given under the relevant computing tasks. The
``M_``,``oo_``, and ``options_`` structures are saved in a file
called ``FILENAME_results.mat``. If they exist, ``estim_params_``,
``bayestopt_``, ``dataset_``, ``oo_recursive_`` and
``estimation_info`` are saved in the same file.
.. matvar:: M_
@ -386,8 +386,7 @@ by the ``dynare`` command.
saved in the `i` -th field. The fields for non-estimated
endpoints are empty.
:ex:
*Example*
Call dynare from the MATLAB or Octave prompt, without or with options:
@ -396,15 +395,14 @@ by the ``dynare`` command.
>> dynare ramst
>> dynare ramst.mod savemacro
Alternatively the options can be passed in the first line
of ``ramst.mod``:
Alternatively the options can be passed in the first line of
``ramst.mod``:
.. code-block:: dynare
// --+ options: savemacro, json=compute +--
and then dynare called without passing options on the command
line:
and then dynare called without passing options on the command line:
.. code-block:: matlab