Cosmetic changes in headers

time-shift
Johannes Pfeifer 2014-09-21 11:51:46 +02:00
parent 009f5f7efc
commit 3e427020d6
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
function [dataset_, dataset_info, xparam1, hh, M_, options_, oo_, estim_params_,bayestopt_] = dynare_estimation_init(var_list_, dname, gsa_flag, M_, options_, oo_, estim_params_, bayestopt_)
% function dynare_estimation_init(var_list_, gsa_flag)
% preforms initialization tasks before estimation or
% performs initialization tasks before estimation or
% global sensitivity analysis
%
% INPUTS

View File

@ -12,16 +12,17 @@ function [x,u] = lyapunov_symm(a,b,third_argument,lyapunov_complex_threshold,met
% lyapunov_complex_threshold [double] scalar, complex block threshold for the upper triangular matrix T.
% method [integer] Scalar, if method=0 [default] then U, T, n and k are not persistent.
% method=1 then U, T, n and k are declared as persistent
% variables and the schur decomposition is triggered.
% variables and the Schur decomposition is triggered.
% method=2 then U, T, n and k are declared as persistent
% variables and the schur decomposition is not performed.
% variables and the Schur decomposition is not performed.
% method=3 fixed point method
% OUTPUTS
% x: [double] m*m solution matrix of the lyapunov equation, where m is the dimension of the stable subsystem.
% u: [double] Schur vectors associated with unit roots
%
% ALGORITHM
% Uses reordered Schur decomposition
% Uses reordered Schur decomposition (Bartels-Stewart algorithm)
% [method<3] or a fixed point algorithm (method==4)
%
% SPECIAL REQUIREMENTS
% None