header updated

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1649 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
assia 2008-01-28 14:28:06 +00:00
parent 12436db725
commit c6dcc08b9a
1 changed files with 20 additions and 2 deletions

View File

@ -1,7 +1,25 @@
% Copyright (C) 2001 Michel Juillard
%
function [a,b] = ffill(x,ixc,y)
% function [a,b] = ffill(x,ixc,y)
% Makes the horizontale concatenation if x exists
% and fills the matrix with 0 if x and y are not the same size.
%
% INPUTS
% x: matrix
% ixc: vector of indices
% y: matrix
%
% OUTPUTS
% a: concatenation results
% b: vector
%
% SPECIAL REQUIREMENTS
% none
%
% part of DYNARE, copyright Dynare Team (2001-2008)
% Gnu Public License.
xc = size(x,1) ;
if isempty(y)