* Fixed the dimension of oo_.mean (see the trac ticket #34).

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2909 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
stepan 2009-09-09 14:14:28 +00:00
parent 50ec80f1df
commit bfbf218616
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ function disp_moments(y,var_list)
y = y - repmat(m,size(y,1),1);
s2 = mean(y.*y);
s = sqrt(s2);
oo_.mean = m;
oo_.mean = transpose(m);
oo_.var = y'*y/size(y,1);
labels = deblank(M_.endo_names(ivar,:));