+ Added missing semicolon.

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2813 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
stepan 2009-07-06 12:34:57 +00:00
parent 479f3340f7
commit 3692d5f99b
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ function [LIK, lik] = missing_observations_kalman_filter(T,R,Q,H,P,Y,start,mf,k
while notsteady & t<smpl
t = t+1;
d_index = data_index{t}
d_index = data_index{t};
if isempty(d_index)
a = T*a;
P = T*P*transpose(T)+QQ;