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

@ -39,12 +39,10 @@ by the ``dynare`` command.
file``. By default (unless ``use_dll`` option has been given to file``. By default (unless ``use_dll`` option has been given to
``model``), the preprocessor creates three intermediary files: ``model``), the preprocessor creates three intermediary files:
- ``filename.m`` - ``filename.m``
Contains variable declarations, and computing tasks. Contains variable declarations, and computing tasks.
- ``FILENAME_dynamic.m`` - ``FILENAME_dynamic.m``
Contains the dynamic model equations. Note that Dynare might 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 equation with respect to the jth model variable in declaration
order. 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``. ``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. 1. there are more endogenous variables than equations.
2. an undeclared symbol is assigned in ``initval`` or ``endval``. 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 .. option:: fast
@ -353,12 +354,11 @@ by the ``dynare`` command.
Depending on the computing tasks requested in the ``.mod`` file, Depending on the computing tasks requested in the ``.mod`` file,
executing the ``dynare`` command will leave variables containing executing the ``dynare`` command will leave variables containing
results in the workspace available for further processing. More results in the workspace available for further processing. More
details are given under the relevant computing tasks. The ``M_, details are given under the relevant computing tasks. The
oo_``, and ``options_`` structures are saved in a file called ``M_``,``oo_``, and ``options_`` structures are saved in a file
``FILENAME_results.mat``. If they exist, ``estim_params_, called ``FILENAME_results.mat``. If they exist, ``estim_params_``,
bayestopt_, dataset_, oo_recursive_`` and ``estimation_info`` are ``bayestopt_``, ``dataset_``, ``oo_recursive_`` and
saved in the same file. ``estimation_info`` are saved in the same file.
.. matvar:: M_ .. matvar:: M_
@ -386,8 +386,7 @@ by the ``dynare`` command.
saved in the `i` -th field. The fields for non-estimated saved in the `i` -th field. The fields for non-estimated
endpoints are empty. endpoints are empty.
*Example*
:ex:
Call dynare from the MATLAB or Octave prompt, without or with options: Call dynare from the MATLAB or Octave prompt, without or with options:
@ -396,15 +395,14 @@ by the ``dynare`` command.
>> dynare ramst >> dynare ramst
>> dynare ramst.mod savemacro >> dynare ramst.mod savemacro
Alternatively the options can be passed in the first line Alternatively the options can be passed in the first line of
of ``ramst.mod``: ``ramst.mod``:
.. code-block:: dynare .. code-block:: dynare
// --+ options: savemacro, json=compute +-- // --+ options: savemacro, json=compute +--
and then dynare called without passing options on the command and then dynare called without passing options on the command line:
line:
.. code-block:: matlab .. code-block:: matlab