diff --git a/src/@dseries/baxter_king_filter.m b/src/@dseries/baxter_king_filter.m index ea9abef08fac6bc3218e3d9bfddb90ce6ba1479c..4232b5e51f95517b5de173441924be202cc6eb6a 100644 --- a/src/@dseries/baxter_king_filter.m +++ b/src/@dseries/baxter_king_filter.m @@ -19,7 +19,7 @@ function ts = baxter_king_filter(ts, high_frequency, low_frequency, K) % --*-- U % This filter use a (symmetric) moving average smoother, so that K observations at the beginning and at the end of the % sample are lost in the computation of the filter. -% Copyright (C) 2013 Dynare Team +% Copyright (C) 2013-2015 Dynare Team % % This file is part of Dynare. % diff --git a/src/@dseries/cumprod.m b/src/@dseries/cumprod.m index ce0ce9ee6dafae86022dfadba17c57cb9618b8bc..034d591148173cd0bb924cea7a3e6a6f7c9e83b4 100644 --- a/src/@dseries/cumprod.m +++ b/src/@dseries/cumprod.m @@ -10,7 +10,7 @@ function B = cumprod(varargin) % --*-- Unitary tests --*-- % OUTPUTS % o B dseries object. -% Copyright (C) 2014 Dynare Team +% Copyright (C) 2014-2016 Dynare Team % % This file is part of Dynare. % diff --git a/src/@dseries/cumsum.m b/src/@dseries/cumsum.m index 4c68874d2c9c993dc1183b1368d78cc5ec6357d0..3655c824f2ccde649b31928f5d3a49df3770edbc 100644 --- a/src/@dseries/cumsum.m +++ b/src/@dseries/cumsum.m @@ -10,7 +10,7 @@ function B = cumsum(varargin) % --*-- Unitary tests --*-- % OUTPUTS % o B dseries object. -% Copyright (C) 2013 Dynare Team +% Copyright (C) 2013-2016 Dynare Team % % This file is part of Dynare. % diff --git a/src/@dseries/dseries.m b/src/@dseries/dseries.m index 5c5d410507ce04e8b9c3965dc1603169c1eb4400..11ea0418ae8018b2921dd58e90319114cc3d68a4 100644 --- a/src/@dseries/dseries.m +++ b/src/@dseries/dseries.m @@ -59,7 +59,7 @@ function ts = dseries(varargin) % --*-- Unitary tests --*-- %! @end deftypefn %@eod: -% Copyright (C) 2011-2016 Dynare Team +% Copyright (C) 2011-2017 Dynare Team % % This file is part of Dynare. % diff --git a/src/@dseries/save.m b/src/@dseries/save.m index 67d5da8d070d7bd9c8b8a57f90ecde93c68c6e20..20945a57f016142079cddf2cfadca611a1926b9e 100644 --- a/src/@dseries/save.m +++ b/src/@dseries/save.m @@ -2,7 +2,7 @@ function save(A,basename,format) % --*-- Unitary tests --*-- % Saves a dseries object on disk. -% Copyright (C) 2013-2016 Dynare Team +% Copyright (C) 2013-2017 Dynare Team % % This file is part of Dynare. % diff --git a/src/@dseries/vertcat.m b/src/@dseries/vertcat.m index 36aa733bdf02696a6f762d008738fd0265f09149..387885ac9e1c6ec6d850bda8844e2a6debd1ad6e 100644 --- a/src/@dseries/vertcat.m +++ b/src/@dseries/vertcat.m @@ -30,7 +30,7 @@ function a = vertcat(varargin) % --*-- Unitary tests --*-- %! @end deftypefn %@eod: -% Copyright (C) 2013 Dynare Team +% Copyright (C) 2013-2015 Dynare Team % % This file is part of Dynare. % diff --git a/src/initialize_dseries_toolbox.m b/src/initialize_dseries_toolbox.m index c7a777d3d25e0eb7feb4e40fdbdc958acacfc54d..ad90434d78ef2d47473a1af17f32262046ca9368 100644 --- a/src/initialize_dseries_toolbox.m +++ b/src/initialize_dseries_toolbox.m @@ -1,3 +1,20 @@ +% Copyright (C) 2015-2017 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 <http://www.gnu.org/licenses/>. + % Check that the dates module is available. try initialize_dates_toolbox; diff --git a/src/read/load_csv_file_data.m b/src/read/load_csv_file_data.m index 1ff0ff24ce4928a82d18cf805b1d318d62e32c5b..3a65360cafbb4eb70f61c2892a50067f7bdd0876 100644 --- a/src/read/load_csv_file_data.m +++ b/src/read/load_csv_file_data.m @@ -16,7 +16,7 @@ function [freq, init, data, varlist] = load_csv_file_data(file) % --*-- Unitary % names. Similarly, if the first column does not contain dates, then % freq will be 1 and init will be year 1. -% Copyright (C) 2012-2016 Dynare Team +% Copyright (C) 2012-2017 Dynare Team % % This file is part of Dynare. % diff --git a/src/read/load_m_file_data.m b/src/read/load_m_file_data.m index 5c2e47881fd817154139fc5db5b85cb9dedc6b5f..cc724714112dc140558ff31b87bac60ce54b81d9 100644 --- a/src/read/load_m_file_data.m +++ b/src/read/load_m_file_data.m @@ -16,7 +16,7 @@ function [freq,init,data,varlist,tex] = load_m_file_data(file) % be a scalar integer and INIT__ a string like '1938M11', '1945Q3', '1973W3' or '2009A'. If these variables are not specified % default values for freq and init are 1 and dates(1,1). -% Copyright (C) 2012-2013 Dynare Team +% Copyright (C) 2012-2015 Dynare Team % % This file is part of Dynare. % diff --git a/src/read/load_mat_file_data.m b/src/read/load_mat_file_data.m index b44124515541d7bd9d8606d7eae82d7f031541f2..d83995674f5d479b7885ca5d1f7df78d79c22740 100644 --- a/src/read/load_mat_file_data.m +++ b/src/read/load_mat_file_data.m @@ -16,7 +16,7 @@ function [freq,init,data,varlist,tex] = load_mat_file_data(file) % --*-- Unitar % be a scalar integer and INIT__ a string like '1938M11', '1945Q3', '1973W3' or '2009A'. If these variables are not specified % default values for freq and init are 1 and dates(1,1). -% Copyright (C) 2012-2014 Dynare Team +% Copyright (C) 2012-2017 Dynare Team % % This file is part of Dynare. % diff --git a/src/utilities/from/from.m b/src/utilities/from/from.m index 81fd5bc1621a1af14cd6d239b3f6123c6f70c4d7..feb2a80c313727d81ccfadcbe21980a01af26a96 100644 --- a/src/utilities/from/from.m +++ b/src/utilities/from/from.m @@ -1,6 +1,6 @@ function from(varargin) % --*-- Unitary tests --*-- -% Copyright (C) 2014 Dynare Team +% Copyright (C) 2014-2015 Dynare Team % % This file is part of Dynare. % diff --git a/tests/runalldseriestests.m b/tests/runalldseriestests.m index 2b0eb160d8681772f526793e752aa2cace543024..b0ec76dd7e3587c09defa6e79565f8e3de53a2d4 100644 --- a/tests/runalldseriestests.m +++ b/tests/runalldseriestests.m @@ -1,3 +1,20 @@ +% Copyright (C) 2015-2017 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 <http://www.gnu.org/licenses/>. + opath = path(); % Check that the m-unit-tests module is available.