From ebd402c88667d4b065cd6b2d4db2b8dbe845f33c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?=
 <stephane.adjemian@univ-lemans.fr>
Date: Thu, 18 May 2017 18:46:13 +0200
Subject: [PATCH] Fixed copyright notices.

---
 src/@dseries/baxter_king_filter.m |  2 +-
 src/@dseries/cumprod.m            |  2 +-
 src/@dseries/cumsum.m             |  2 +-
 src/@dseries/dseries.m            |  2 +-
 src/@dseries/save.m               |  2 +-
 src/@dseries/vertcat.m            |  2 +-
 src/initialize_dseries_toolbox.m  | 17 +++++++++++++++++
 src/read/load_csv_file_data.m     |  2 +-
 src/read/load_m_file_data.m       |  2 +-
 src/read/load_mat_file_data.m     |  2 +-
 src/utilities/from/from.m         |  2 +-
 tests/runalldseriestests.m        | 17 +++++++++++++++++
 12 files changed, 44 insertions(+), 10 deletions(-)

diff --git a/src/@dseries/baxter_king_filter.m b/src/@dseries/baxter_king_filter.m
index ea9abef..4232b5e 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 ce0ce9e..034d591 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 4c68874..3655c82 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 5c5d410..11ea041 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 67d5da8..20945a5 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 36aa733..387885a 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 c7a777d..ad90434 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 1ff0ff2..3a65360 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 5c2e478..cc72471 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 b441245..d839956 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 81fd5bc..feb2a80 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 2b0eb16..b0ec76d 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.
-- 
GitLab