4.1: fixing bug: ri is a now a column vector, not a matrix anymore. [Needs to be merged in 4.0]

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2501 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
michel 2009-03-21 18:07:45 +00:00
parent 1021b83fbf
commit 6732f6e235
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ while t>d+1
ri = Z(i,:)'/Fi(i,t)*v(i,t)+Li(:,:,i,t)'*ri;
end
end
r(:,t) = ri(:,t);
r(:,t) = ri;
alphahat(:,t) = a1(:,t) + P1(:,:,t)*r(:,t);
etahat(:,t) = QRt*r(:,t);
ri = T'*ri;