Matches new output list for

missing_DiffuseKalmanSmoother3.m
and
 DiffuseKalmanSmoother3.m

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2969 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
ratto 2009-09-24 12:44:33 +00:00
parent edea5b303b
commit b8f5e80099
1 changed files with 2 additions and 2 deletions

View File

@ -269,10 +269,10 @@ function [alphahat,etahat,epsilonhat,ahat,SteadyState,trend_coeff,aK,T,R,P,PK,d,
end
if kalman_algo == 2
if missing_value
[alphahat,etahat,ahat,aK] = missing_DiffuseKalmanSmoother3(T,R,Q, ...
[alphahat,etahat,ahat,P,aK,PK,d,decomp] = missing_DiffuseKalmanSmoother3(T,R,Q, ...
Pinf,Pstar,Y,trend,nobs,np,smpl,mf,data_index);
else
[alphahat,etahat,ahat,aK] = DiffuseKalmanSmoother3(T,R,Q, ...
[alphahat,etahat,ahat,P,aK,PK,d,decomp] = DiffuseKalmanSmoother3(T,R,Q, ...
Pinf,Pstar,Y,trend,nobs,np,smpl,mf);
end
end