Cosmetic changes to various function headers

time-shift
Johannes Pfeifer 2016-03-25 20:20:28 +01:00
parent b688cbe5b2
commit 16d8ee0c7b
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
function [dataset_, dataset_info, xparam1, hh, M_, options_, oo_, estim_params_,bayestopt_, bounds] = dynare_estimation_init(var_list_, dname, gsa_flag, M_, options_, oo_, estim_params_, bayestopt_)
% function dynare_estimation_init(var_list_, gsa_flag)
% function [dataset_, dataset_info, xparam1, hh, M_, options_, oo_, estim_params_,bayestopt_, bounds] = dynare_estimation_init(var_list_, dname, gsa_flag, M_, options_, oo_, estim_params_, bayestopt_)
% performs initialization tasks before estimation or
% global sensitivity analysis
%
@ -14,7 +14,6 @@ function [dataset_, dataset_info, xparam1, hh, M_, options_, oo_, estim_params_,
% estim_params_: structure storing information about estimated
% parameters
% bayestopt_: structure storing information about priors
% optim: structure storing optimization bounds
% OUTPUTS
% dataset_: the dataset after required transformation
@ -28,6 +27,7 @@ function [dataset_, dataset_info, xparam1, hh, M_, options_, oo_, estim_params_,
% estim_params_: structure storing information about estimated
% parameters
% bayestopt_: structure storing information about priors
% bounds: structure containing prior bounds
%
% SPECIAL REQUIREMENTS
% none

View File

@ -1,7 +1,7 @@
function [residuals,check1,jacob] = evaluate_static_model(ys,exo_ss,params,M,options)
% function [ys,info] = evaluate_steady_state(M,options,oo)
% Computes the steady state
% function [residuals,check1,jacob] = evaluate_static_model(ys,exo_ss,params,M,options)
% Evaluates the static model
%
% INPUTS
% ys vector initial values used to compute the steady
@ -20,7 +20,7 @@ function [residuals,check1,jacob] = evaluate_static_model(ys,exo_ss,params,M,opt
% SPECIAL REQUIREMENTS
% none
% Copyright (C) 2001-2012 Dynare Team
% Copyright (C) 2001-2016 Dynare Team
%
% This file is part of Dynare.
%

View File

@ -1,5 +1,5 @@
function DynareResults = initial_estimation_checks(objective_function,xparam1,DynareDataset,DatasetInfo,Model,EstimatedParameters,DynareOptions,BayesInfo,BoundsInfo,DynareResults)
% function initial_estimation_checks(xparam1,gend,data,data_index,number_of_observations,no_more_missing_observations)
% function DynareResults = initial_estimation_checks(objective_function,xparam1,DynareDataset,DatasetInfo,Model,EstimatedParameters,DynareOptions,BayesInfo,BoundsInfo,DynareResults)
% Checks data (complex values, ML evaluation, initial values, BK conditions,..)
%
% INPUTS
@ -11,6 +11,7 @@ function DynareResults = initial_estimation_checks(objective_function,xparam1,Dy
% EstimatedParameters [structure] characterizing parameters to be estimated
% DynareOptions [structure] describing the options
% BayesInfo [structure] describing the priors
% BoundsInfo [structure] containing prior bounds
% DynareResults [structure] storing the results
%
% OUTPUTS