header updated

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1529 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
assia 2008-01-03 11:16:18 +00:00
parent a80aa9eb17
commit 713f2ed1d9
1 changed files with 18 additions and 2 deletions

View File

@ -1,7 +1,22 @@
% Copyright (C) 2001 Michel Juillard
%
function d = bksup1(ny,jcf)
% function d = bksup1(ny,jcf)
% Solves deterministic models recursively by backsubstitution for one lead/lag
%
% INPUTS
% ny: number of endogenous variables
% jcf: variables index forward
%
% OUTPUTS
% d: vector of backsubstitution results
%
% SPECIAL REQUIREMENTS
% none
%
% part of DYNARE, copyright Dynare Team (2003-2007)
% Gnu Public License.
global options_ iyf c
ir = [(options_.periods-2)*ny+1:ny+(options_.periods-2)*ny] ;
@ -17,3 +32,4 @@ end
d = c(:,jcf) ;
return ;