Merge pull request #343 from JohannesPfeifer/master

Bugfixes of correlation_mc_analysis
time-shift
Sébastien Villemot 2013-03-27 06:12:55 -07:00
commit 76ca912d02
2 changed files with 5 additions and 4 deletions

View File

@ -4609,7 +4609,8 @@ where @var{THEORETICAL_MOMENT} is one of the following:
Variance-covariance of endogenous variables
@item correlation
Autocorrelation of endogenous variables
Auto- and cross-correlation of endogenous variables. Fields are vectors with correlations from 1 up to order @code{options_.ar}
@item VarianceDecomposition
Decomposition of variance@footnote{When the shocks are correlated, it

View File

@ -49,9 +49,9 @@ if isfield(oo_,[TYPE 'TheoreticalMoments'])
eval(['temporary_structure = oo_.' TYPE 'TheoreticalMoments.dsge;'])
if isfield(temporary_structure,'correlation')
eval(['temporary_structure = oo_.' TYPE 'TheoreticalMoments.dsge.correlation.Mean;'])
if isfield(temporary_structure,var1)
if isfield(temporary_structure,deblank(var1))
eval(['temporary_structure_1 = oo_.' TYPE 'TheoreticalMoments.dsge.correlation.Mean.' var1 ';'])
if isfield(temporary_structure_1,var2)
if isfield(temporary_structure_1,deblank(var2))
eval(['temporary_structure_2 = temporary_structure_1.' var2 ';'])
l1 = length(temporary_structure_2);
if l1<nar
@ -116,7 +116,7 @@ else
if isfield(temporary_structure,'correlation')
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'Mean',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'Median',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'Nariance',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'Variance',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'HPDinf',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'HPDsup',nar,NaN);
oo_ = fill_output_structure(var1,var2,TYPE,oo_,'deciles',nar,NaN);