diff --git a/matlab/cosn.m b/matlab/cosn.m index f7564c47e..ba5547d0a 100644 --- a/matlab/cosn.m +++ b/matlab/cosn.m @@ -3,9 +3,26 @@ function co = cosn(H); % function co = cosn(H); % computes the cosine of the angle between the H(:,1) and its % projection onto the span of H(:,2:end) - +% % Not the same as multiple correlation coefficient since the means are not % zero +% +% Copyright (C) 2008 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . y = H(:,1); X = H(:,2:end); diff --git a/matlab/disp_identification.m b/matlab/disp_identification.m index c00285d28..c2d9e6bb4 100644 --- a/matlab/disp_identification.m +++ b/matlab/disp_identification.m @@ -1,5 +1,22 @@ function disp_identification(pdraws, idemodel, idemoments) +% Copyright (C) 2008 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . + global bayestopt_ [SampleSize, npar] = size(pdraws); diff --git a/matlab/dynare_identification.m b/matlab/dynare_identification.m index d5cd57e92..2d2c42b48 100644 --- a/matlab/dynare_identification.m +++ b/matlab/dynare_identification.m @@ -1,6 +1,23 @@ function [pdraws, idemodel, idemoments] = dynare_identification() % main +% +% Copyright (C) 2008 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . global M_ options_ oo_ bayestopt_ estim_params_ diff --git a/matlab/getH.m b/matlab/getH.m index 7b730be81..56e226803 100644 --- a/matlab/getH.m +++ b/matlab/getH.m @@ -1,5 +1,23 @@ function [H, A0, B0, dA, dOm, info] = getH(M_,oo_,kronflag,indx,indexo) + % computes derivative of reduced form linear model w.r.t. deep params +% +% Copyright (C) 2008 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . if nargin<3 | isempty(kronflag), kronflag = 0; end if nargin<4 | isempty(indx), indx = [1:M_.param_nbr];, end, diff --git a/matlab/getJJ.m b/matlab/getJJ.m index ffa4c7dcf..7a42a25c5 100644 --- a/matlab/getJJ.m +++ b/matlab/getJJ.m @@ -1,5 +1,22 @@ function [JJ, H, A, B, GAM] = getJJ(M_,oo_,options_,kronflag,indx,indexo,mf,nlags,useautocorr) +% Copyright (C) 2009 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . + if nargin<5 | isempty(indx), indx = [1:M_.param_nbr];, end, if nargin<6 | isempty(indexo), indexo = [];, end, if nargin<8 | isempty(nlags), nlags=3; end, diff --git a/matlab/identification_checks.m b/matlab/identification_checks.m index 6eacf0ae1..c7e26aaa5 100644 --- a/matlab/identification_checks.m +++ b/matlab/identification_checks.m @@ -1,5 +1,21 @@ function [McoH, McoJ, PcoH, PcoJ, condH, condJ, eH, eJ, ind01, ind02, indnoH, indnoJ] = identification_checks(H,JJ, bayestopt_) +% Copyright (C) 2008 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . % My suggestion is to have the following steps for identification check in % dynare: diff --git a/matlab/vnorm.m b/matlab/vnorm.m index dbf5790f4..1973a822d 100644 --- a/matlab/vnorm.m +++ b/matlab/vnorm.m @@ -33,7 +33,24 @@ function y = vnorm(A,varargin) % % Error: Use the inf type and not the string 'inf' % vnorm(A,[],'inf') % Wrong % vnorm(A,[],inf) % Correct - +% +% +% Copyright (C) 2009 Dynare Team +% +% This file is part of Dynare. +% +% Dynare is free software: you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation, either version 3 of the License, or +% (at your option) any later version. +% +% Dynare is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with Dynare. If not, see . dim = []; ntype = [];