From a3a7dabf05072eb5c485ed7d5119f563f1b7ad88 Mon Sep 17 00:00:00 2001 From: Arnaud TANGUY Date: Mon, 15 Mar 2021 09:28:15 +0900 Subject: [PATCH] Update attributions --- CMakeLists.txt | 15 --------------- .../gram_savitzky_golay/gram_savitzky_golay.h | 3 ++- include/gram_savitzky_golay/spatial_filters.h | 3 ++- matlab/gram_savitzky_golay/GenFact.m | 17 +---------------- matlab/gram_savitzky_golay/GramPoly.m | 18 +----------------- matlab/gram_savitzky_golay/Weight.m | 17 +---------------- matlab/gram_savitzky_golay/generate_weights.m | 17 +---------------- matlab/gram_savitzky_golay/savitzky_golay.m | 18 +----------------- src/CMakeLists.txt | 18 +----------------- src/gram_savitzky_golay.cpp | 3 ++- src/spatial_filters.cpp | 3 ++- tests/CMakeLists.txt | 18 +----------------- 12 files changed, 15 insertions(+), 135 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0578c61..d796bcd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,20 +1,5 @@ # Copyright 2017-2018 CNRS-UM LIRMM # Copyright 2017-2018 Arnaud TANGUY -# -# This file is part of robcalib. -# -# robcalib is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# robcalib 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with robcalib. If not, see . cmake_minimum_required(VERSION 3.1) diff --git a/include/gram_savitzky_golay/gram_savitzky_golay.h b/include/gram_savitzky_golay/gram_savitzky_golay.h index 0dcd538..8a7662e 100644 --- a/include/gram_savitzky_golay/gram_savitzky_golay.h +++ b/include/gram_savitzky_golay/gram_savitzky_golay.h @@ -1,5 +1,6 @@ /* - * Copyright 2017-2020 CNRS-UM LIRMM, CNRS-AIST JRL + * Copyright 2017-2018 CNRS-UM LIRMM + * Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL */ #pragma once diff --git a/include/gram_savitzky_golay/spatial_filters.h b/include/gram_savitzky_golay/spatial_filters.h index 98392c9..8868853 100644 --- a/include/gram_savitzky_golay/spatial_filters.h +++ b/include/gram_savitzky_golay/spatial_filters.h @@ -1,5 +1,6 @@ /* - * Copyright 2017-2020 CNRS-UM LIRMM, CNRS-AIST JRL + * Copyright 2017-2018 CNRS-UM LIRMM + * Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL */ #pragma once diff --git a/matlab/gram_savitzky_golay/GenFact.m b/matlab/gram_savitzky_golay/GenFact.m index d0d5721..ef5b218 100644 --- a/matlab/gram_savitzky_golay/GenFact.m +++ b/matlab/gram_savitzky_golay/GenFact.m @@ -1,20 +1,5 @@ % Copyright 2017-2018 CNRS-UM LIRMM -% Copyright 2017-2018 Arnaud TANGUY -% -% This file is part of robcalib. -% -% robcalib is free software: you can redistribute it and/or modify -% it under the terms of the GNU Lesser General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% robcalib 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 Lesser General Public License for more details. -% -% You should have received a copy of the GNU Lesser General Public License -% along with robcalib. If not, see . +% Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL function [ gf ] = GenFact( a, b ) %GenFact Calculates the generalized factorial (a)(a-1)(a-2)...(a-b+1) diff --git a/matlab/gram_savitzky_golay/GramPoly.m b/matlab/gram_savitzky_golay/GramPoly.m index 7bea88b..203f77b 100644 --- a/matlab/gram_savitzky_golay/GramPoly.m +++ b/matlab/gram_savitzky_golay/GramPoly.m @@ -1,21 +1,5 @@ % Copyright 2017-2018 CNRS-UM LIRMM -% Copyright 2017-2018 Arnaud TANGUY -% -% This file is part of robcalib. -% -% robcalib is free software: you can redistribute it and/or modify -% it under the terms of the GNU Lesser General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% robcalib 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 Lesser General Public License for more details. -% -% You should have received a copy of the GNU Lesser General Public License -% along with robcalib. If not, see . - +% Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL function [ gp ] = GramPoly( i, m, k, s ) %GRAMPOLY Calculates the Gram Polynomial (s=0) or its sth derivative diff --git a/matlab/gram_savitzky_golay/Weight.m b/matlab/gram_savitzky_golay/Weight.m index 4f34d07..d402493 100644 --- a/matlab/gram_savitzky_golay/Weight.m +++ b/matlab/gram_savitzky_golay/Weight.m @@ -1,20 +1,5 @@ % Copyright 2017-2018 CNRS-UM LIRMM -% Copyright 2017-2018 Arnaud TANGUY -% -% This file is part of robcalib. -% -% robcalib is free software: you can redistribute it and/or modify -% it under the terms of the GNU Lesser General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% robcalib 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 Lesser General Public License for more details. -% -% You should have received a copy of the GNU Lesser General Public License -% along with robcalib. If not, see . +% Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL function [ w ] = Weight( i, t, m, n, s ) %Weight Calculates the weight of the ith data point for the t'th diff --git a/matlab/gram_savitzky_golay/generate_weights.m b/matlab/gram_savitzky_golay/generate_weights.m index 4bfebc4..3b03601 100644 --- a/matlab/gram_savitzky_golay/generate_weights.m +++ b/matlab/gram_savitzky_golay/generate_weights.m @@ -1,20 +1,5 @@ % Copyright 2017-2018 CNRS-UM LIRMM -% Copyright 2017-2018 Arnaud TANGUY -% -% This file is part of robcalib. -% -% robcalib is free software: you can redistribute it and/or modify -% it under the terms of the GNU Lesser General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% robcalib 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 Lesser General Public License for more details. -% -% You should have received a copy of the GNU Lesser General Public License -% along with robcalib. If not, see . +% Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL function [ w ] = generate_weights( m, t, n, s ) %generate_weights Generate weights for filtering at the end of window diff --git a/matlab/gram_savitzky_golay/savitzky_golay.m b/matlab/gram_savitzky_golay/savitzky_golay.m index 65b03a5..478f92f 100644 --- a/matlab/gram_savitzky_golay/savitzky_golay.m +++ b/matlab/gram_savitzky_golay/savitzky_golay.m @@ -1,21 +1,5 @@ % Copyright 2017-2018 CNRS-UM LIRMM -% Copyright 2017-2018 Arnaud TANGUY -% -% This file is part of robcalib. -% -% robcalib is free software: you can redistribute it and/or modify -% it under the terms of the GNU Lesser General Public License as published by -% the Free Software Foundation, either version 3 of the License, or -% (at your option) any later version. -% -% robcalib 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 Lesser General Public License for more details. -% -% You should have received a copy of the GNU Lesser General Public License -% along with robcalib. If not, see . - +% Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL function [ res ] = savitzky_golay( x, sg ) %savitzky_golay Apply Gram Convolution weights to x diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 961434c..907273f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,21 +1,5 @@ # Copyright 2017-2018 CNRS-UM LIRMM -# Copyright 2017-2018 Arnaud TANGUY -# -# This file is part of robcalib. -# -# robcalib is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# robcalib 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with robcalib. If not, see . - +# Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL set(SRC gram_savitzky_golay.cpp diff --git a/src/gram_savitzky_golay.cpp b/src/gram_savitzky_golay.cpp index 2e902f0..9fc2706 100644 --- a/src/gram_savitzky_golay.cpp +++ b/src/gram_savitzky_golay.cpp @@ -1,5 +1,6 @@ /* - * Copyright 2017-2020 CNRS-UM LIRMM, CNRS-AIST JRL + * Copyright 2017-2018 CNRS-UM LIRMM + * Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL */ #include diff --git a/src/spatial_filters.cpp b/src/spatial_filters.cpp index fc3b69e..62dadf1 100644 --- a/src/spatial_filters.cpp +++ b/src/spatial_filters.cpp @@ -1,5 +1,6 @@ /* - * Copyright 2017-2020 CNRS-UM LIRMM, CNRS-AIST JRL + * Copyright 2017-2018 CNRS-UM LIRMM + * Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL */ #include diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1d9052a..67e8f90 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,21 +1,5 @@ # Copyright 2017-2018 CNRS-UM LIRMM -# Copyright 2017-2018 Arnaud TANGUY -# -# This file is part of robcalib. -# -# robcalib is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# robcalib 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 Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with robcalib. If not, see . - +# Copyright 2019-2021 CNRS-UM LIRMM, CNRS-AIST JRL macro(add_test_simple NAME) add_executable(${NAME} ${NAME}.cpp)