diff --git a/copyright.py b/copyright.py
index 6522e105f7e358df625a9454458527fd03a54b30..d4ba711bf7d79744b49bfb364ae9bd1c8aa31144 100644
--- a/copyright.py
+++ b/copyright.py
@@ -42,6 +42,19 @@ def fileRemoveSharps(filename):
             removeLine = False
             print(line, end="")
 
+def fileRemoveBlankLines(filename):
+    """ Remove undesirable blank lines from a file """
+    removeLine = False
+    for line in fileinput.input(filename, inplace=1):
+        if  line.startswith("# -*- coding: utf-8 -*-"):
+            print(line, end="")
+            removeLine = True
+        elif removeLine and not line.strip():
+            pass
+        else:
+            removeLine = False
+            print(line, end="")
+
 def fileStamping(filename, stamp):
     """ Write a stamp on a file
 
@@ -53,7 +66,7 @@ def fileStamping(filename, stamp):
             old_stamp = not old_stamp
         elif line.startswith("# -*- coding: utf-8 -*-"):
             print(line, end="")
-            print(stamp)
+            print(stamp, end="")
         elif not old_stamp:
             print(line, end="")
 
@@ -123,6 +136,13 @@ def removeSharps():
         fileRemoveSharps(filename)
     fileRemoveSharps("setup.py")
 
+def removeBlankLines():
+    """ Remove undesirable blank lines from all files """
+    files = findFiles(os.path.join(os.path.dirname(os.path.abspath(__file__)),
+                                   "ltfatpy"))
+    for filename in files:
+        fileRemoveBlankLines(filename)
+
 def usage(arg):
     print("Usage :")
     print("\tpython %s stamping" % arg)
@@ -137,6 +157,8 @@ if __name__ == "__main__":
             eraseStamp()
         elif sys.argv[1].startswith("stamping"):
             writeStamp()
+        elif sys.argv[1].startswith("blanklines"):
+            removeBlankLines()
         else:
             usage(sys.argv[0])
     else:
diff --git a/doc/copyright.rst b/doc/copyright.rst
index 9001d5074cdc1183389ef08b26f6bf52c4eec2dd..79be9962f2cd5edba7bcaef228b7868af43c1ddf 100644
--- a/doc/copyright.rst
+++ b/doc/copyright.rst
@@ -1,5 +1,5 @@
 
-Copyright(c) 2016
+Copyright(c) 2017
 -----------------
 
 * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -8,7 +8,7 @@ Copyright(c) 2016
 * Université d'Aix-Marseille : http://www.univ-amu.fr/
 
 This software is a port from LTFAT 2.1.0 :
-Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 
 Contributors
 ------------
@@ -26,7 +26,7 @@ time-frequency analysis and synthesis.
 Version
 -------
 
-* ltfatpy version = 1.0.7
+* ltfatpy version = 1.0.8
 * LTFAT version = 2.1.0
 
 Licence
diff --git a/ltfatpy/comp/arg_firwin.py b/ltfatpy/comp/arg_firwin.py
index d0b1be328dcbf3623546c077773138ff1dccab79..48633c71962c26ac517ef7c9f4d3d6a87303354d 100644
--- a/ltfatpy/comp/arg_firwin.py
+++ b/ltfatpy/comp/arg_firwin.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of FIR window names
 
 Ported from ltfat_2.1.0/comp/arg_firwin.m
diff --git a/ltfatpy/comp/assert_groworder.py b/ltfatpy/comp/assert_groworder.py
index 804cfad5ba0567b97ab111492ea73537374b8cbd..f41b2a3de4e840a6acd9e5c52f12ded182432287 100644
--- a/ltfatpy/comp/assert_groworder.py
+++ b/ltfatpy/comp/assert_groworder.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of order parameter growing
 
 Ported from ltfat_2.1.0/comp/assert_groworder.m
diff --git a/ltfatpy/comp/assert_sigreshape_post.py b/ltfatpy/comp/assert_sigreshape_post.py
index f6356bfbba601665b3da55709d480ad75bfb28c9..90cfebebc91e683f8da67fab682206aaa8c3d967 100644
--- a/ltfatpy/comp/assert_sigreshape_post.py
+++ b/ltfatpy/comp/assert_sigreshape_post.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of original permuted shape restoration
 
 Ported from ltfat_2.1.0/comp/assert_sigreshape_post.m
diff --git a/ltfatpy/comp/assert_sigreshape_pre.py b/ltfatpy/comp/assert_sigreshape_pre.py
index aac8316dd9cceb184b9c963c01565f96cadf4163..f52fa3c21c8acc6d4b817725ed3ee001662a7991 100644
--- a/ltfatpy/comp/assert_sigreshape_pre.py
+++ b/ltfatpy/comp/assert_sigreshape_pre.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of dimension input proprocessing and handling
 
 Ported from ltfat_2.1.0/comp/assert_sigreshape_pre.m
diff --git a/ltfatpy/comp/comp_dct.pyx b/ltfatpy/comp/comp_dct.pyx
index 17e64672f3fd1008d9fd860d4ee051ad94950521..0de868928fd9e695bae26b50b1968dd526d520cb 100644
--- a/ltfatpy/comp/comp_dct.pyx
+++ b/ltfatpy/comp/comp_dct.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of dct calculations.
 
diff --git a/ltfatpy/comp/comp_dst.pyx b/ltfatpy/comp/comp_dst.pyx
index 35e5f854e71e9ec06ed2392cf6abd4f502ee115b..f2d682441cc83558ec644d773eec8f78297ec98e 100644
--- a/ltfatpy/comp/comp_dst.pyx
+++ b/ltfatpy/comp/comp_dst.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of dst calculations.
 
diff --git a/ltfatpy/comp/comp_gabdual_long.pyx b/ltfatpy/comp/comp_gabdual_long.pyx
index ac3bae49bebd643e149a265c72024c3a956b64b8..c449be8ef98db46a4858de4807143f2edf349d94 100644
--- a/ltfatpy/comp/comp_gabdual_long.pyx
+++ b/ltfatpy/comp/comp_gabdual_long.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of gabor dual windows calculations.
 
diff --git a/ltfatpy/comp/comp_gabtight_long.pyx b/ltfatpy/comp/comp_gabtight_long.pyx
index 8380e93657549d1699ac30d395a3e176ab9f0a5b..0e299ad3a0304d7dcf5691a27ac43eef76090862 100644
--- a/ltfatpy/comp/comp_gabtight_long.pyx
+++ b/ltfatpy/comp/comp_gabtight_long.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of tight gabor windows calculation.
 
diff --git a/ltfatpy/comp/comp_hermite.py b/ltfatpy/comp/comp_hermite.py
index d2f7e0bb8a606078a0c2466513039293b565d448..fe936c65b5ef787a62a0828ff3711d6e232b6094 100644
--- a/ltfatpy/comp/comp_hermite.py
+++ b/ltfatpy/comp/comp_hermite.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of sampling of continuous Hermite function computation
 
 Ported from ltfat_2.1.0/comp/comp_hermite.m
diff --git a/ltfatpy/comp/comp_hermite_all.py b/ltfatpy/comp/comp_hermite_all.py
index 67266161aa1b93fbef32e059e5e8670e982ca065..757f4918c112f10e11c5491a20c1d2b7c7bc1767 100644
--- a/ltfatpy/comp/comp_hermite_all.py
+++ b/ltfatpy/comp/comp_hermite_all.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of sampling of all Hermite function computation
 
 Ported from ltfat_2.1.0/comp/comp_hermite_all.m
diff --git a/ltfatpy/comp/comp_isepdgt.pyx b/ltfatpy/comp/comp_isepdgt.pyx
index 69bd61fae472c050d8e2a74f06db162c0da376fe..4c95ba1258f31ad1c7a966244dc2c5e06fae279a 100644
--- a/ltfatpy/comp/comp_isepdgt.pyx
+++ b/ltfatpy/comp/comp_isepdgt.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of isepdgt calculations.
 
diff --git a/ltfatpy/comp/comp_isepdgtreal.pyx b/ltfatpy/comp/comp_isepdgtreal.pyx
index 262b0594ec37440ab193a9292fd167144c220308..6a4386de1a4faf114d8ed112ae386bb67999f571 100644
--- a/ltfatpy/comp/comp_isepdgtreal.pyx
+++ b/ltfatpy/comp/comp_isepdgtreal.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of isepdgtreal calculations.
 
diff --git a/ltfatpy/comp/comp_pgauss.pyx b/ltfatpy/comp/comp_pgauss.pyx
index 535eb37d0d588869965b329e470269f001d6e75b..71545b07e9d4c12ee17c178c367ab9ac71885cd7 100644
--- a/ltfatpy/comp/comp_pgauss.pyx
+++ b/ltfatpy/comp/comp_pgauss.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of periodized Gaussian calculation.
 
diff --git a/ltfatpy/comp/comp_sepdgt.pyx b/ltfatpy/comp/comp_sepdgt.pyx
index 0b894020e0172cf211b7f7df01f7bee6edb65d73..7a3e0e56bb993e4a1b89a0456ed225e9a2c9f40b 100644
--- a/ltfatpy/comp/comp_sepdgt.pyx
+++ b/ltfatpy/comp/comp_sepdgt.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of sepdgt calculations.
 
diff --git a/ltfatpy/comp/comp_sepdgtreal.pyx b/ltfatpy/comp/comp_sepdgtreal.pyx
index 5a5d002ec4d1811ddabc6eafe50f4d629042d145..31decaafeb3f25bccc2ac70240c2d745cdc15ce8 100644
--- a/ltfatpy/comp/comp_sepdgtreal.pyx
+++ b/ltfatpy/comp/comp_sepdgtreal.pyx
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains interface functions for the LTFAT computed
 versions of sepdgt calculations.
 
diff --git a/ltfatpy/comp/comp_sigreshape_post.py b/ltfatpy/comp/comp_sigreshape_post.py
index eeecba8448ba544269c67ecd48298dba2df84fa1..23cf6dad0eb3e651a53593787c7d15eea83dcea7 100644
--- a/ltfatpy/comp/comp_sigreshape_post.py
+++ b/ltfatpy/comp/comp_sigreshape_post.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of comp_sigreshape_post calculation
 
 Ported from ltfat_2.1.0/comp/comp_sigreshape_post.m
diff --git a/ltfatpy/comp/comp_sigreshape_pre.py b/ltfatpy/comp/comp_sigreshape_pre.py
index 993acaccfaad2e8d59325d598bca4efd7aaba910..8ef85c8591f594a9eb5cdbbad9aaa51b63eab5d2 100644
--- a/ltfatpy/comp/comp_sigreshape_pre.py
+++ b/ltfatpy/comp/comp_sigreshape_pre.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of comp_sigreshape_pre calculation
 
 Ported from ltfat_2.1.0/comp/comp_sigreshape_pre.m
diff --git a/ltfatpy/comp/comp_window.py b/ltfatpy/comp/comp_window.py
index 502d450d12a9cb6116064c2be0abcf8c845e70f1..aa62fb7081b444d74aaa214cc8a7abfe295e9817 100644
--- a/ltfatpy/comp/comp_window.py
+++ b/ltfatpy/comp/comp_window.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of window calculation from descriptions
 
 Ported from ltfat_2.1.0/comp/comp_window.m
diff --git a/ltfatpy/comp/gabpars_from_windowsignal.py b/ltfatpy/comp/gabpars_from_windowsignal.py
index ac7321d3d225831308aad37fac647b5c91ae41a9..45f3a2966aecf34d52cc39b3ecfff105150ff8ff 100644
--- a/ltfatpy/comp/gabpars_from_windowsignal.py
+++ b/ltfatpy/comp/gabpars_from_windowsignal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of gabpars_from_windowsignal calculation
 
 Ported from ltfat_2.1.0/comp/gabpars_from_windowsignal.m
diff --git a/ltfatpy/comp/ltfat.pxd b/ltfatpy/comp/ltfat.pxd
index 50b7e124bcd03e4d25052499da43771b7deaca47..d8b9a81233c153ba3160f790267e0085951d1dcc 100644
--- a/ltfatpy/comp/ltfat.pxd
+++ b/ltfatpy/comp/ltfat.pxd
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 cdef enum dgt_phasetype:
     FREQINV = 0
     TIMEINV = 1
diff --git a/ltfatpy/fourier/dcti.py b/ltfatpy/fourier/dcti.py
index 4124d0ee9089916e6c5720b643624186413270cc..2c8384d65f706ef867fcb50b3f34ea36c8791d7e 100644
--- a/ltfatpy/fourier/dcti.py
+++ b/ltfatpy/fourier/dcti.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,11 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
-
 """This module contains DCTI function
 
 Ported from ltfat_2.1.0/fourier/dcti.m
diff --git a/ltfatpy/fourier/dctii.py b/ltfatpy/fourier/dctii.py
index a136f5418e9647f25a77d730d72209384c8261e9..968dadb17c22d6f2c7a1cca79872361c2c4621d0 100644
--- a/ltfatpy/fourier/dctii.py
+++ b/ltfatpy/fourier/dctii.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains DCTII function
 
 Ported from ltfat_2.1.0/fourier/dctii.m
diff --git a/ltfatpy/fourier/dctiii.py b/ltfatpy/fourier/dctiii.py
index 0b097a2a7b9c2f4bc25f76e221b24c16e0e116bd..d7cd4a2973722edf24755eec28e5118f70a72e08 100644
--- a/ltfatpy/fourier/dctiii.py
+++ b/ltfatpy/fourier/dctiii.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains dctIII function
 
 Ported from ltfat_2.1.0/fourier/dctiii.m
diff --git a/ltfatpy/fourier/dctiv.py b/ltfatpy/fourier/dctiv.py
index f9a5d7c2b2fc5fd8f68c8c032a6d4316fd2e81f3..cb25924dd45084e189a2310585b50c5d80f4edaf 100644
--- a/ltfatpy/fourier/dctiv.py
+++ b/ltfatpy/fourier/dctiv.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains dctIV function
 
 Ported from ltfat_2.1.0/fourier/dctiv.m
diff --git a/ltfatpy/fourier/dft.py b/ltfatpy/fourier/dft.py
index 346c7e36995ef1a382fabfd0924af6a31a1f38bd..08fa0413b7d1537c07d16005b89e809de005f504 100644
--- a/ltfatpy/fourier/dft.py
+++ b/ltfatpy/fourier/dft.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of normalized discrete Fourier transform
 
 Ported from ltfat_2.1.0/fourier/dft.m
diff --git a/ltfatpy/fourier/dsti.py b/ltfatpy/fourier/dsti.py
index b6463297cb259904f63445e5c6f95fb8c66f788a..219729573c724fe283647211177ac1555c3e074b 100644
--- a/ltfatpy/fourier/dsti.py
+++ b/ltfatpy/fourier/dsti.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains DSTI function
 
 Ported from ltfat_2.1.0/fourier/dsti.m
diff --git a/ltfatpy/fourier/dstii.py b/ltfatpy/fourier/dstii.py
index 1b387c88eea15f8a227dcf88c4504273c1f41dea..fe0f88f40e05b2aaa1365839e896fe06eb032191 100644
--- a/ltfatpy/fourier/dstii.py
+++ b/ltfatpy/fourier/dstii.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains DSTII function
 
 Ported from ltfat_2.1.0/fourier/dstii.m
diff --git a/ltfatpy/fourier/dstiii.py b/ltfatpy/fourier/dstiii.py
index 58b0d8e6628015848cafc048d9d7e47122ed6fc4..7e41555f21be8446da9685e5360eb3dbfad9b6c0 100644
--- a/ltfatpy/fourier/dstiii.py
+++ b/ltfatpy/fourier/dstiii.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains DSTIII function
 
 Ported from ltfat_2.1.0/fourier/dstiii.m
diff --git a/ltfatpy/fourier/dstiv.py b/ltfatpy/fourier/dstiv.py
index 8652f87e9e7961d5d2a8f7860bffd4d179c43f42..15063ba447adfa79597eeb7f0fe37e51b7cb2ca3 100644
--- a/ltfatpy/fourier/dstiv.py
+++ b/ltfatpy/fourier/dstiv.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains DSTIV function
 
 Ported from ltfat_2.1.0/fourier/dstiv.m
diff --git a/ltfatpy/fourier/fftindex.py b/ltfatpy/fourier/fftindex.py
index 9511837a9a84ebbf3bf959ca917097179e94428c..d1712093ba26a083c5d345d4e5e4e6f52c71171f 100644
--- a/ltfatpy/fourier/fftindex.py
+++ b/ltfatpy/fourier/fftindex.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of frequency index of FFT modulations computation
 
 Ported from ltfat_2.1.0/fourier/fftindex.m
diff --git a/ltfatpy/fourier/fftreal.py b/ltfatpy/fourier/fftreal.py
index 65892cdabd62dab59137ac2ea59046fa64de645b..34cb6e01ef4799ca506ac43696260b1d1c47809b 100644
--- a/ltfatpy/fourier/fftreal.py
+++ b/ltfatpy/fourier/fftreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of FFT for real valued data computation
 
 Ported from ltfat_2.1.0/fourier/fftreal.m
diff --git a/ltfatpy/fourier/fftresample.py b/ltfatpy/fourier/fftresample.py
index 871a0bde3fe5376d516961f1d8681df21ac03579..12ff443d8042da1e7eb4cf49f927e621358b68c2 100644
--- a/ltfatpy/fourier/fftresample.py
+++ b/ltfatpy/fourier/fftresample.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of signal resampling using Fourier interpolation
 
 Ported from ltfat_2.1.0/fourier/fftresample.m
diff --git a/ltfatpy/fourier/idft.py b/ltfatpy/fourier/idft.py
index ff727e5e444e79abe5f9bb1c57d9ac26c130caec..a97a81fd35d6af2a137975aa49ee2431b4d4f93c 100644
--- a/ltfatpy/fourier/idft.py
+++ b/ltfatpy/fourier/idft.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of inverse normalized discrete Fourier transform
 
 Ported from ltfat_2.1.0/fourier/idft.m
diff --git a/ltfatpy/fourier/ifftreal.py b/ltfatpy/fourier/ifftreal.py
index fcc0cc119d1733620b25791a1b1bff7c373e2f4c..c71100378bf2a07432bf5b9b729aab37c011d75a 100644
--- a/ltfatpy/fourier/ifftreal.py
+++ b/ltfatpy/fourier/ifftreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of inverse FFT for real valued data computation
 
 Ported from ltfat_2.1.0/fourier/ifftreal.m
diff --git a/ltfatpy/fourier/isevenfunction.py b/ltfatpy/fourier/isevenfunction.py
index e87ebd0d19325d9d3f2ad1f35aaed7b104c50921..ae4d53898850e9ad5c4b74b5c27998f7c271b54b 100644
--- a/ltfatpy/fourier/isevenfunction.py
+++ b/ltfatpy/fourier/isevenfunction.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of even function tests
 
 Ported from ltfat_2.1.0/fourier/isevenfunction.m
diff --git a/ltfatpy/fourier/middlepad.py b/ltfatpy/fourier/middlepad.py
index 6a14e2e2e26f4fdd397435dc6805bf58742e51a4..fcb7677ceaa32b82adc3af9c9062c24e47805256 100644
--- a/ltfatpy/fourier/middlepad.py
+++ b/ltfatpy/fourier/middlepad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of symmetrical zero-extension or cut of data
 
 Ported from ltfat_2.1.0/fourier/middlepad.m
diff --git a/ltfatpy/fourier/pderiv.py b/ltfatpy/fourier/pderiv.py
index 5b247463f6f42189869cc910df6dff487c38f852..9c5297dfe56dd9637eef466f6ececeb657a8c1ca 100644
--- a/ltfatpy/fourier/pderiv.py
+++ b/ltfatpy/fourier/pderiv.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of derivative of smooth periodic function computation
 
 Ported from ltfat_2.1.0/fourier/pderiv.m
diff --git a/ltfatpy/fourier/pgauss.py b/ltfatpy/fourier/pgauss.py
index f62b7a6ec99d88bb9983611cd0e5f6aa79210e42..3a0f7141cec85006acf685f4337af88bd5dca786 100644
--- a/ltfatpy/fourier/pgauss.py
+++ b/ltfatpy/fourier/pgauss.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains sampled, periodized Gaussian window function
 
 Ported from ltfat_2.1.0/fourier/pgauss.m
diff --git a/ltfatpy/fourier/pherm.py b/ltfatpy/fourier/pherm.py
index 883ce2b6b36145bf05623e1ac4de21d4edd9e617..0b24a0ca6971f5c97e5b8d9afff111a51ae66fa1 100644
--- a/ltfatpy/fourier/pherm.py
+++ b/ltfatpy/fourier/pherm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module contains samples of a periodized Hermite function
 
 Ported from ltfat_2.1.0/fourier/pherm.m
diff --git a/ltfatpy/fourier/psech.py b/ltfatpy/fourier/psech.py
index 5746648b89c6746ed8b45bf3bcd92489912d9c9f..c5dc33e4e2d6351fb0510f61fde54326be86aa7f 100644
--- a/ltfatpy/fourier/psech.py
+++ b/ltfatpy/fourier/psech.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of Sampled, periodized hyperbolic secant calculation
 
 Ported from ltfat_2.1.0/fourier/psech.m
diff --git a/ltfatpy/gabor/dgt.py b/ltfatpy/gabor/dgt.py
index d53ba346c6cbc5b585e90c04b60fbaef06adb5bd..192a1cf704c84d0f35d8fcf6c48ac215ac5fe0ed 100644
--- a/ltfatpy/gabor/dgt.py
+++ b/ltfatpy/gabor/dgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of dgt calculation
 
 Ported from ltfat_2.1.0/gabor/dgt.m
diff --git a/ltfatpy/gabor/dgtlength.py b/ltfatpy/gabor/dgtlength.py
index 43743051bf5035f3125e8bf9cb75e3a386ffb55a..6cfb1e6ddbe726c156b7c1e3cd294b7a766c6cdc 100644
--- a/ltfatpy/gabor/dgtlength.py
+++ b/ltfatpy/gabor/dgtlength.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of dgtlength calculation
 
 Ported from ltfat_2.1.0/gabor/dgtlength.m
diff --git a/ltfatpy/gabor/dgtreal.py b/ltfatpy/gabor/dgtreal.py
index 483c32b73112cccad851c63dfe53d8a3e96450f4..38439cd0a989931f290e8a0ff1301b28d205bbb2 100644
--- a/ltfatpy/gabor/dgtreal.py
+++ b/ltfatpy/gabor/dgtreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of dgtreal calculation
 
 Ported from ltfat_2.1.0/gabor/dgtreal.m
diff --git a/ltfatpy/gabor/gabdual.py b/ltfatpy/gabor/gabdual.py
index b9b152c79cc14e3ad87a7b0a05ba80c0f1cfaa87..d6a834c3055f43aef65052ffb915139c64e9ec49 100644
--- a/ltfatpy/gabor/gabdual.py
+++ b/ltfatpy/gabor/gabdual.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of Canonical dual window calculation
 
 Ported from ltfat_2.1.0/gabor/gabdual.m
diff --git a/ltfatpy/gabor/gabframediag.py b/ltfatpy/gabor/gabframediag.py
index ee148a03c8f2c2da8b4da6b9616e446351e5f0a2..19aa4719ca3b892f4e190911fdf27cab0f850b19 100644
--- a/ltfatpy/gabor/gabframediag.py
+++ b/ltfatpy/gabor/gabframediag.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module that computes Diagonal of Gabor frame operator
 
 Ported from ltfat_2.1.0/gabor/gabframediag.m
diff --git a/ltfatpy/gabor/gabimagepars.py b/ltfatpy/gabor/gabimagepars.py
index bdd0399c13bbafd6fc0c3489f43c2ac733636740..e5e99f241eb3a39704aad3545595ed6107610a8d 100644
--- a/ltfatpy/gabor/gabimagepars.py
+++ b/ltfatpy/gabor/gabimagepars.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module to find Gabor parameters to generate image
 
 Ported from ltfat_2.1.0/gabor/gabimagepars.m
diff --git a/ltfatpy/gabor/gabphasegrad.py b/ltfatpy/gabor/gabphasegrad.py
index bfb5b173dfb7e03b2799cdbfa24f11713845c77f..b086f519ada68608abec4b6df9e1ff534abd571d 100644
--- a/ltfatpy/gabor/gabphasegrad.py
+++ b/ltfatpy/gabor/gabphasegrad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of phase gradient computation
 
 Ported from ltfat_2.1.0/gabor/gabphasegrad.m
diff --git a/ltfatpy/gabor/gabtight.py b/ltfatpy/gabor/gabtight.py
index fcec85ee4b9de6e90459cb9de347c5c3844816a7..f654f1ed081e9ab9896bf64de7450df75f872c78 100644
--- a/ltfatpy/gabor/gabtight.py
+++ b/ltfatpy/gabor/gabtight.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of canonical tight windows calculation
 
 Ported from ltfat_2.1.0/gabor/gabtight.m
diff --git a/ltfatpy/gabor/gabwin.py b/ltfatpy/gabor/gabwin.py
index cb4981000de27330483bace69c8dd4a83b3e5d52..f6a8d194037ad2916af8fcde4148cdf3e5995211 100644
--- a/ltfatpy/gabor/gabwin.py
+++ b/ltfatpy/gabor/gabwin.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of Gabor window calculation
 
 Ported from ltfat_2.1.0/gabor/gabwin.m
diff --git a/ltfatpy/gabor/idgt.py b/ltfatpy/gabor/idgt.py
index aa302ef11355e18816cae1533807c51b799fa5bd..3694e08daee2ac7494012f926ff0902465c4841d 100644
--- a/ltfatpy/gabor/idgt.py
+++ b/ltfatpy/gabor/idgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of idgt calculation
 
 Ported from ltfat_2.1.0/gabor/idgt.m
diff --git a/ltfatpy/gabor/idgtreal.py b/ltfatpy/gabor/idgtreal.py
index 10762084e93611508a9946113f6fc0051c397a25..6e3a0adcd737017d2338e4c36820eec333dc0535 100644
--- a/ltfatpy/gabor/idgtreal.py
+++ b/ltfatpy/gabor/idgtreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of idgtreal calculation
 
 Ported from ltfat_2.1.0/gabor/idgtreal.m
diff --git a/ltfatpy/gabor/instfreqplot.py b/ltfatpy/gabor/instfreqplot.py
index 0a281b1a6c3be37be2f87821c2c23d2f8aa4ffae..3f5eed4ba519bafb15f136d0a993953de85b43f9 100644
--- a/ltfatpy/gabor/instfreqplot.py
+++ b/ltfatpy/gabor/instfreqplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of instantaneous frequency plot
 
 Ported from ltfat_2.1.0/gabor/instfreqplot.m
diff --git a/ltfatpy/gabor/phaselock.py b/ltfatpy/gabor/phaselock.py
index 02a40bb0d4c2c6a00f04d56973dcfb1d1674e52e..9fa32c7a1a8e93b916d673145f617089ac590edc 100644
--- a/ltfatpy/gabor/phaselock.py
+++ b/ltfatpy/gabor/phaselock.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of phaselocking
 
 Ported from ltfat_2.1.0/gabor/phaselock.m
diff --git a/ltfatpy/gabor/phaseplot.py b/ltfatpy/gabor/phaseplot.py
index 98bf7b49c646a4f8f13feb221a2dd09ae9f9c113..50a2f939d6fab61960cb5403ae447fe5a0fa1ada 100644
--- a/ltfatpy/gabor/phaseplot.py
+++ b/ltfatpy/gabor/phaseplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of phase plot
 
 Ported from ltfat_2.1.0/gabor/phaseplot.m
diff --git a/ltfatpy/gabor/phaseunlock.py b/ltfatpy/gabor/phaseunlock.py
index 37479c87ffe63ff8dde6b725c136ca5478e2195f..0db81cdf2889f4abdb861dc679fb1aa2cb8f092c 100644
--- a/ltfatpy/gabor/phaseunlock.py
+++ b/ltfatpy/gabor/phaseunlock.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of phaseunlocking
 
 Ported from ltfat_2.1.0/gabor/phaseunlock.m
diff --git a/ltfatpy/gabor/plotdgt.py b/ltfatpy/gabor/plotdgt.py
index 5718ca646bd613bbc83b76d8eaf9249b5efc3798..17115e9ecefdb20a9aace048aff708db45e6d3b8 100644
--- a/ltfatpy/gabor/plotdgt.py
+++ b/ltfatpy/gabor/plotdgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of dgt coefficients plotting
 
 Ported from ltfat_2.1.0/gabor/plotdgt.m
diff --git a/ltfatpy/gabor/plotdgtreal.py b/ltfatpy/gabor/plotdgtreal.py
index 2060fbc814e5aac184859114edf7943d301478cb..4c3134e01d1ec39fc5bc93c4be5d96c1cd41d8e7 100644
--- a/ltfatpy/gabor/plotdgtreal.py
+++ b/ltfatpy/gabor/plotdgtreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of dgtreal coefficients plotting
 
 Ported from ltfat_2.1.0/gabor/plotdgtreal.m
diff --git a/ltfatpy/gabor/s0norm.py b/ltfatpy/gabor/s0norm.py
index ce31540ff2b1f3f6816de96a027efb76cef20d6a..0f5e4831eebb3aa9ea39e6a5939fd2c46b9ec3cc 100644
--- a/ltfatpy/gabor/s0norm.py
+++ b/ltfatpy/gabor/s0norm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of S0 norm calculation
 
 Ported from ltfat_2.1.0/gabor/s0norm.m
diff --git a/ltfatpy/gabor/sgram.py b/ltfatpy/gabor/sgram.py
index 26b5c6b8e7d493ea6ba9b6e7e63209a780ed6fa4..f577b84d289b9df09609dcdb59b53582c46ac981 100644
--- a/ltfatpy/gabor/sgram.py
+++ b/ltfatpy/gabor/sgram.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of spectrogram plotting
 
 Ported from ltfat_2.1.0/gabor/sgram.m
diff --git a/ltfatpy/gabor/tfplot.py b/ltfatpy/gabor/tfplot.py
index 1e48daddff351ddbecf1a2bfd944a2a9ec8017d7..743dadf6db2a8b9cd02f55203269986f1dcfda41 100644
--- a/ltfatpy/gabor/tfplot.py
+++ b/ltfatpy/gabor/tfplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of time-frequency plotting
 
 Ported from ltfat_2.1.0/gabor/tfplot.m
diff --git a/ltfatpy/signals/greasy.py b/ltfatpy/signals/greasy.py
index 436ad83627e3d5097ac7092f3c88d7d3cedbb239..6c4269aa43df14679f896f4141b56bd82a8f608c 100644
--- a/ltfatpy/signals/greasy.py
+++ b/ltfatpy/signals/greasy.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of greasy signal loading
 
 Ported from ltfat_2.1.0/signals/greasy.m
diff --git a/ltfatpy/signals/gspi.py b/ltfatpy/signals/gspi.py
index 41e6155c7dd48b27056a93bedd21bc31764e417e..268cdb6c29b963dd8f88949f0f5e3906278c19ec 100644
--- a/ltfatpy/signals/gspi.py
+++ b/ltfatpy/signals/gspi.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of glockenspiel signal loading
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/signals/linus.py b/ltfatpy/signals/linus.py
index b6b2d9570de918f9f9d80f68d93a2fb2551703aa..268b6071dfe78e146729e3417ecc4dc7bdbaa176 100644
--- a/ltfatpy/signals/linus.py
+++ b/ltfatpy/signals/linus.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module of linus signal loading
 
 Ported from ltfat_2.1.0/signals/linus.m
diff --git a/ltfatpy/sigproc/fir2long.py b/ltfatpy/sigproc/fir2long.py
index 8c91a4c952af9155ebb7822f4dbd10eb9daa464f..52e40186fe24dbf72d8688c88cda5e17c144fc90 100644
--- a/ltfatpy/sigproc/fir2long.py
+++ b/ltfatpy/sigproc/fir2long.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module that extends fir windows with zeros
 
 Ported from ltfat_2.1.0/sigproc/fir2long.m
diff --git a/ltfatpy/sigproc/firkaiser.py b/ltfatpy/sigproc/firkaiser.py
index 39104faeb76c448d72b7b063d411e981dd8c493e..3399a8f6799553f0ad2fca8f6c45387d758696e1 100644
--- a/ltfatpy/sigproc/firkaiser.py
+++ b/ltfatpy/sigproc/firkaiser.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of Kaiser-Bessel window calculation
 
 Ported from ltfat_2.1.0/sigproc/firkaiser.m
diff --git a/ltfatpy/sigproc/firwin.py b/ltfatpy/sigproc/firwin.py
index 2d6b713c4da51e5fa5287060dc3b6f0b782bd25f..000f430525d43029990f91ce6cf6743a2d2432cc 100644
--- a/ltfatpy/sigproc/firwin.py
+++ b/ltfatpy/sigproc/firwin.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of fir windows calculation
 
 Ported from ltfat_2.1.0/sigproc/firwin.m
diff --git a/ltfatpy/sigproc/groupthresh.py b/ltfatpy/sigproc/groupthresh.py
index a2252c78f22a3ac719ead54896a234ce35bbbdf3..366d366329a55c6d426a7b1333a925b791fba408 100644
--- a/ltfatpy/sigproc/groupthresh.py
+++ b/ltfatpy/sigproc/groupthresh.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of group thresholding
 
 Ported from ltfat_2.1.0/sigproc/groupthresh.m
diff --git a/ltfatpy/sigproc/largestn.py b/ltfatpy/sigproc/largestn.py
index 74b0ad9241cd12e6f12b25f1ded61438ba69d866..7fb45c29d67222e8691b0df457f7d40e6fbcfa90 100644
--- a/ltfatpy/sigproc/largestn.py
+++ b/ltfatpy/sigproc/largestn.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of N largest coefficients extraction
 
 Ported from ltfat_2.1.0/sigproc/largestn.m
diff --git a/ltfatpy/sigproc/largestr.py b/ltfatpy/sigproc/largestr.py
index 88976f2f186f9e9df1716b4b55864e8014000a47..79f7268989544fde1fefbcce0e8a352181507aa1 100644
--- a/ltfatpy/sigproc/largestr.py
+++ b/ltfatpy/sigproc/largestr.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of fixed ratio of largest coefficients extraction
 
 Ported from ltfat_2.1.0/sigproc/largestr.m
diff --git a/ltfatpy/sigproc/long2fir.py b/ltfatpy/sigproc/long2fir.py
index 0cc2b5e34606a4ac9c3c2e5fe4d4b73ab11a8f50..29918eaa7eaefbe59ff1294bc967260e40e16bab 100644
--- a/ltfatpy/sigproc/long2fir.py
+++ b/ltfatpy/sigproc/long2fir.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module that cuts long windows to fir
 
 Ported from ltfat_2.1.0/sigproc/long2fir.m
diff --git a/ltfatpy/sigproc/normalize.py b/ltfatpy/sigproc/normalize.py
index 51cd2fd7c0559ca9b9dcfab30be0fdab7fd47032..0d02f48130e9e030a6c19af789b5de89bc5c2468 100644
--- a/ltfatpy/sigproc/normalize.py
+++ b/ltfatpy/sigproc/normalize.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of signal normalization
 
 Ported from ltfat_2.1.0/sigproc/normalize.m
diff --git a/ltfatpy/sigproc/rms.py b/ltfatpy/sigproc/rms.py
index 639c6c194ad6a213f9dd0cc36b764d76eeae6047..cc60a47e6dd8fa60ac1f4a30aa93d44cd10bb393 100644
--- a/ltfatpy/sigproc/rms.py
+++ b/ltfatpy/sigproc/rms.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of Root Mean Square calculation
 
 Ported from ltfat_2.1.0/sigproc/rms.m
diff --git a/ltfatpy/sigproc/thresh.py b/ltfatpy/sigproc/thresh.py
index b68842da101a963a582044a5b119b0180c64f414..7485690215b5857ca29bd46e3d9cd5cfa6ed17bf 100644
--- a/ltfatpy/sigproc/thresh.py
+++ b/ltfatpy/sigproc/thresh.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """ Module of coefficient thresholding
 
 Ported from ltfat_2.1.0/sigproc/thresh.m
diff --git a/ltfatpy/tests/comp/test_assert_sigreshape_post.py b/ltfatpy/tests/comp/test_assert_sigreshape_post.py
index bccb2e16f699611f277a70c5e3601681238367bb..73e1436abb0b0bf2a0b014cc0900aece74a2f979 100644
--- a/ltfatpy/tests/comp/test_assert_sigreshape_post.py
+++ b/ltfatpy/tests/comp/test_assert_sigreshape_post.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the assert_sigreshape_post function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_assert_sigreshape_pre.py b/ltfatpy/tests/comp/test_assert_sigreshape_pre.py
index 8830bc5a971ad16b6ccd2fc7166a353afd06044e..07dbbe380f7135628da34eb80ae2125505150895 100644
--- a/ltfatpy/tests/comp/test_assert_sigreshape_pre.py
+++ b/ltfatpy/tests/comp/test_assert_sigreshape_pre.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the assert_sigreshape_pre function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_dct.py b/ltfatpy/tests/comp/test_comp_dct.py
index 79765c9ef579643a0578e53573b5ce269a275952..55319cce091ab900c447d653c238d3eac7e8e7d1 100644
--- a/ltfatpy/tests/comp/test_comp_dct.py
+++ b/ltfatpy/tests/comp/test_comp_dct.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the compt_dct function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_dst.py b/ltfatpy/tests/comp/test_comp_dst.py
index 0df427eda93925b5a595ac9d8c5f7b851e7ffb25..677fe37406ce438543763846829328f23f374e77 100644
--- a/ltfatpy/tests/comp/test_comp_dst.py
+++ b/ltfatpy/tests/comp/test_comp_dst.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_dst function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_gabdual.py b/ltfatpy/tests/comp/test_comp_gabdual.py
index 4b10ed47be1a0f74d5230a3142ff7d2b4b5f319f..b227bc6bc11a320d98217ca38cd8d25118898dbb 100644
--- a/ltfatpy/tests/comp/test_comp_gabdual.py
+++ b/ltfatpy/tests/comp/test_comp_gabdual.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_gabdual_long function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_hermite.py b/ltfatpy/tests/comp/test_comp_hermite.py
index ef33d88fe97fcc7da5c86eb701954ea75d816eb0..063aae1cc945172c6fe4412342e99a9aa7fe1bb1 100644
--- a/ltfatpy/tests/comp/test_comp_hermite.py
+++ b/ltfatpy/tests/comp/test_comp_hermite.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_hermite function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_hermite_all.py b/ltfatpy/tests/comp/test_comp_hermite_all.py
index 9ba551304b28795cdfbcc26dae18e4b38625272f..b4075293319e84aa51ef55003f61d8cf18d53082 100644
--- a/ltfatpy/tests/comp/test_comp_hermite_all.py
+++ b/ltfatpy/tests/comp/test_comp_hermite_all.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_hermite_all function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_isepdgt.py b/ltfatpy/tests/comp/test_comp_isepdgt.py
index 5c54a713c9251e8fc56cee9e76d7d09118c4ac3d..359944142bee3fe69fe894ee252da57aefd49fea 100644
--- a/ltfatpy/tests/comp/test_comp_isepdgt.py
+++ b/ltfatpy/tests/comp/test_comp_isepdgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_isepdgt function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_pgauss.py b/ltfatpy/tests/comp/test_comp_pgauss.py
index c3806d6c918e43139e8725cc2aa52a08aa57f225..7e8a8d34cc8fe122fbf9c8bb2a85f188e78a0def 100644
--- a/ltfatpy/tests/comp/test_comp_pgauss.py
+++ b/ltfatpy/tests/comp/test_comp_pgauss.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_pgauss function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_sepdgt.py b/ltfatpy/tests/comp/test_comp_sepdgt.py
index b44ee10290ec05913c84389d88decacf6de71cb1..dba6275f8e681e8a85afcd7a7445437ff555a423 100644
--- a/ltfatpy/tests/comp/test_comp_sepdgt.py
+++ b/ltfatpy/tests/comp/test_comp_sepdgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_sepdgt function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/comp/test_comp_sigreshape.py b/ltfatpy/tests/comp/test_comp_sigreshape.py
index 1a0bcc16392ea708fa78f121ab3a1312144fc7e1..0279a65d9a6fe5ac402c8a5b1bb6277e7cbc4d6f 100644
--- a/ltfatpy/tests/comp/test_comp_sigreshape.py
+++ b/ltfatpy/tests/comp/test_comp_sigreshape.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the comp_sigreshape_pre and comp_sigreshape_post functions
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/datasets/get_dataset_path.py b/ltfatpy/tests/datasets/get_dataset_path.py
index 25bbc074dd1ed7405a3d7fd21b57815b1fa20448..1d798bced7882c01c6defe1d06e60f9b88ba9441 100644
--- a/ltfatpy/tests/datasets/get_dataset_path.py
+++ b/ltfatpy/tests/datasets/get_dataset_path.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Module to get the absolute path of a reference dataset for tests
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py b/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py
index e19a7214b2e3ca791cde2a581e4d0c7c21c84944..df14484746431588dab2660053923915d3c7138f 100644
--- a/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing signals, dct from comp_dct for validations.
 
diff --git a/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py b/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py
index 5bf83aed1478ea70d6a5247b77d9df923882287d..495d51476b2d4dd8aa86e1d2c2c1358f5291e791 100644
--- a/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing signals, dst from comp_dst for validations.
 
diff --git a/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py b/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py
index 5fe3b9c1e1d091b415cd7556a69c01661234b3c2..d91d24e280302ce7f00f24fa65be525b17827339 100644
--- a/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing signals, dgt and idgt for validations.
 
diff --git a/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py b/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py
index b52f2ce38606972c60a727b280751094f7b89bcf..49f940d5be4e3bd310bdc898bf53ccdd0b79010f 100644
--- a/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing windows and their gabor operator diagonals for validation.
 
diff --git a/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py b/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py
index d9b9ce694b4aa2702b350fad2809c7702c381bdc..2e2f3c9a625acd88d26c571d449573efe7f5f1d3 100644
--- a/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing windows and their corresponding tight gabor window for validation.
 
diff --git a/ltfatpy/tests/datasets/read_ref_mat.py b/ltfatpy/tests/datasets/read_ref_mat.py
index 6b0347757045da3c386c62ea5a621c6190461c7e..e6e52603f6f65c6a18b8d3afb7d11b15798cb900 100644
--- a/ltfatpy/tests/datasets/read_ref_mat.py
+++ b/ltfatpy/tests/datasets/read_ref_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat files generated with the Octave version of ltfat for validation
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/datasets/read_s0norm_ex_mat.py b/ltfatpy/tests/datasets/read_s0norm_ex_mat.py
index cbc418b8834e7fe6bde6119808d7389a943474ab..36d381c05887bb1f75749299f0f8321f17d1add1 100644
--- a/ltfatpy/tests/datasets/read_s0norm_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_s0norm_ex_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Read .mat data files generated with the Matlab version of Ltfat and
 containing data and s0norms for validation.
 
diff --git a/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py b/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py
index 8bcdc668ee29ffba5635566c07e02d076d320b45..a16ed2e7af2e0599289b424d262b6ec798b97e5e 100644
--- a/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py
+++ b/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the read_dgt_signal_ex_mat function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/datasets/test_read_ref_mat.py b/ltfatpy/tests/datasets/test_read_ref_mat.py
index b450e7c9295263049c3e45b041347aa4c7c26614..4b9991e9e82a2ab87b64420e7640a364fb6f024e 100644
--- a/ltfatpy/tests/datasets/test_read_ref_mat.py
+++ b/ltfatpy/tests/datasets/test_read_ref_mat.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the read_ref_mat function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_dct.py b/ltfatpy/tests/fourier/test_dct.py
index 1358ecc68bd8685b9235343024a85f3645e0ad82..5414497405aa3da89f197e0b11ebd94b33eea9bc 100644
--- a/ltfatpy/tests/fourier/test_dct.py
+++ b/ltfatpy/tests/fourier/test_dct.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the dcti, dctii, dctiii, dctiv functions
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/fourier/test_dft.py b/ltfatpy/tests/fourier/test_dft.py
index 6d4e300138dc51184560a4e4fa5257c9f60bc5de..1715f09684190abfc97e9a213dcd874219fa413d 100644
--- a/ltfatpy/tests/fourier/test_dft.py
+++ b/ltfatpy/tests/fourier/test_dft.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the dft function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_dst.py b/ltfatpy/tests/fourier/test_dst.py
index e919b40410fdaf824523774c07332c41b1761d4f..3284363f7a54e8a6aaed73b6b2bfe634219499ca 100644
--- a/ltfatpy/tests/fourier/test_dst.py
+++ b/ltfatpy/tests/fourier/test_dst.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the dsti, dstii, dstiii, dstiv functions
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/fourier/test_fftindex.py b/ltfatpy/tests/fourier/test_fftindex.py
index d29f3804f19fe17a803e2a132c28e17b2df17bd0..f6c10200d969a25077b476e07538fda075d7bbb2 100644
--- a/ltfatpy/tests/fourier/test_fftindex.py
+++ b/ltfatpy/tests/fourier/test_fftindex.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the fftindex function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_fftreal.py b/ltfatpy/tests/fourier/test_fftreal.py
index 435dbff80d277eccc0194a48682ca04d011d68bf..4d3e8553ce940fbabc3f25cd001305287bcc6423 100644
--- a/ltfatpy/tests/fourier/test_fftreal.py
+++ b/ltfatpy/tests/fourier/test_fftreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the fftreal function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_fftresample.py b/ltfatpy/tests/fourier/test_fftresample.py
index 452b3b13a79096f08af32e512b83bc4bf1b50649..43115e74f21c913c1a87d4ffb5f3a7360e3c3bf0 100644
--- a/ltfatpy/tests/fourier/test_fftresample.py
+++ b/ltfatpy/tests/fourier/test_fftresample.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the fftresample function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_idft.py b/ltfatpy/tests/fourier/test_idft.py
index 2334cb676640748f4e4c5ef59f72f9ee23a50ffd..249c78e4bbc168457159a29f27236f6bce104fe9 100644
--- a/ltfatpy/tests/fourier/test_idft.py
+++ b/ltfatpy/tests/fourier/test_idft.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the idft function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_ifftreal.py b/ltfatpy/tests/fourier/test_ifftreal.py
index a54241275dd97a624f3a3a52abcb6bcb2395d28b..3b648b6439e8bccd17eb187fee8ee7d6ea4bcefd 100644
--- a/ltfatpy/tests/fourier/test_ifftreal.py
+++ b/ltfatpy/tests/fourier/test_ifftreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the ifftreal function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_isevenfunction.py b/ltfatpy/tests/fourier/test_isevenfunction.py
index d4293bd9adb4b8e9a861d66904733d7cea413312..803961d26905ef775b553fce5acc2b89680f6806 100644
--- a/ltfatpy/tests/fourier/test_isevenfunction.py
+++ b/ltfatpy/tests/fourier/test_isevenfunction.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the isevenfunction function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/fourier/test_middlepad.py b/ltfatpy/tests/fourier/test_middlepad.py
index 718041fd451330b61397a72824ab3e3ed8bedc03..640ad0ba9bc445711fb7a804d35d6ae2471fa2b7 100644
--- a/ltfatpy/tests/fourier/test_middlepad.py
+++ b/ltfatpy/tests/fourier/test_middlepad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the middlepad function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_pderiv.py b/ltfatpy/tests/fourier/test_pderiv.py
index b5ffe31c08f0dd26bb49d6976f0fd4c09de01e9c..db4ef59e2d7d80150255be7b106887498596b5fe 100644
--- a/ltfatpy/tests/fourier/test_pderiv.py
+++ b/ltfatpy/tests/fourier/test_pderiv.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the pderiv function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/fourier/test_pgauss.py b/ltfatpy/tests/fourier/test_pgauss.py
index 97ad548811a49d113cb7af2ef43208031da47f29..43801aa5382bdf63d69f1ccbd1a0dd9ffa5a47f3 100644
--- a/ltfatpy/tests/fourier/test_pgauss.py
+++ b/ltfatpy/tests/fourier/test_pgauss.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the pgauss function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/fourier/test_pherm.py b/ltfatpy/tests/fourier/test_pherm.py
index f90f921b9d71592a909d1c47ac5c0cc3e3392a18..8d7212001f69085d1563a10ec7fd205e38dbc106 100644
--- a/ltfatpy/tests/fourier/test_pherm.py
+++ b/ltfatpy/tests/fourier/test_pherm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the pherm function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/fourier/test_psech.py b/ltfatpy/tests/fourier/test_psech.py
index 689c8dedb11858269bcc14fa213c253a4dbd2221..b67c61c110e32988c2a8fd6a6f1d3725270fc51c 100644
--- a/ltfatpy/tests/fourier/test_psech.py
+++ b/ltfatpy/tests/fourier/test_psech.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the psech function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_dgt.py b/ltfatpy/tests/gabor/test_dgt.py
index 646b1865a64d3ab22bedf59872ad2212b7f18e2f..a6bf52b1324366f890de02f74ae338c3d79d1e21 100644
--- a/ltfatpy/tests/gabor/test_dgt.py
+++ b/ltfatpy/tests/gabor/test_dgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the dgt function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_gabdual.py b/ltfatpy/tests/gabor/test_gabdual.py
index cf57237d7519a8672da87404131778cf450cabdf..0ce9d6bc21cb91dce1492729cebcfa0184500a88 100644
--- a/ltfatpy/tests/gabor/test_gabdual.py
+++ b/ltfatpy/tests/gabor/test_gabdual.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabdual function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_gabframediag.py b/ltfatpy/tests/gabor/test_gabframediag.py
index 5f3decb1d4d48d5489a2d8bf442bbe66aa5ae8a2..bfdd377a30cf5082222197067b4e65f0638844da 100644
--- a/ltfatpy/tests/gabor/test_gabframediag.py
+++ b/ltfatpy/tests/gabor/test_gabframediag.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabframediag function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_gabimagepars.py b/ltfatpy/tests/gabor/test_gabimagepars.py
index 1d8f0eb4628a46c8bceca1f4b7849d1eca34073f..5adba38812f79e76a64c69333e2e260b795f0581 100644
--- a/ltfatpy/tests/gabor/test_gabimagepars.py
+++ b/ltfatpy/tests/gabor/test_gabimagepars.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabimagepars function
 
 NOTE: Only the non-graphical features of gabimagepars are tested here
diff --git a/ltfatpy/tests/gabor/test_gabphasegrad.py b/ltfatpy/tests/gabor/test_gabphasegrad.py
index 3cbfe03b8ba4023f71fa1b477a8445ddb4ba18ac..33e85c791767ca615f018ca860088dbe22e80622 100644
--- a/ltfatpy/tests/gabor/test_gabphasegrad.py
+++ b/ltfatpy/tests/gabor/test_gabphasegrad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabphasegrad function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/gabor/test_gabtight.py b/ltfatpy/tests/gabor/test_gabtight.py
index f00ba8eee60200792ea107239451f829db959744..c8718e584c1ff9c7820c61be2431a567ab746ef9 100644
--- a/ltfatpy/tests/gabor/test_gabtight.py
+++ b/ltfatpy/tests/gabor/test_gabtight.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabtight function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_gabwin.py b/ltfatpy/tests/gabor/test_gabwin.py
index c340818bae14225cd42a8ac61db7778948ed7172..10fd7632874c97ff908073345c3e4467cc457ac1 100644
--- a/ltfatpy/tests/gabor/test_gabwin.py
+++ b/ltfatpy/tests/gabor/test_gabwin.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gabwin function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_idgt.py b/ltfatpy/tests/gabor/test_idgt.py
index 2ee9bda8b76c0c0748fcb155d5b883fa50471912..3a702a5407b62f37570259e4b927665464bed887 100644
--- a/ltfatpy/tests/gabor/test_idgt.py
+++ b/ltfatpy/tests/gabor/test_idgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the idgt function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_instfreqplot.py b/ltfatpy/tests/gabor/test_instfreqplot.py
index 09f3ae33e40acb43f4f1cac6810f7b51a84a4a88..0cf7e3ac63611903959db8f90a531de15685e035 100644
--- a/ltfatpy/tests/gabor/test_instfreqplot.py
+++ b/ltfatpy/tests/gabor/test_instfreqplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the instfreqplot function
 
 NOTE: Only the non-graphical features of instfreqplot are tested here
diff --git a/ltfatpy/tests/gabor/test_phaselock.py b/ltfatpy/tests/gabor/test_phaselock.py
index ce0cdf710323ca1f23f035d291d62c8947c7f930..ac7416d2cd40b25791edb2320dea98effb3ab75d 100644
--- a/ltfatpy/tests/gabor/test_phaselock.py
+++ b/ltfatpy/tests/gabor/test_phaselock.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the phaselock function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/gabor/test_phaseplot.py b/ltfatpy/tests/gabor/test_phaseplot.py
index 65afc7f5818376ce1d6cb03d7d6d0256067840f0..4bfca8b699a4692d58a2ae6fd205039935525a30 100644
--- a/ltfatpy/tests/gabor/test_phaseplot.py
+++ b/ltfatpy/tests/gabor/test_phaseplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the phaseplot function
 
 NOTE: Only the non-graphical features of phaseplot are tested here
diff --git a/ltfatpy/tests/gabor/test_phaseunlock.py b/ltfatpy/tests/gabor/test_phaseunlock.py
index e5e878a21110d057cf0c5cd26e314000dabf8e02..b69f37628978aba33224543d40968f89724f1a32 100644
--- a/ltfatpy/tests/gabor/test_phaseunlock.py
+++ b/ltfatpy/tests/gabor/test_phaseunlock.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the phaseunlock function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/gabor/test_plotdgt.py b/ltfatpy/tests/gabor/test_plotdgt.py
index 7769ff2e2d7a4c2dd6f0531e30fd2cc9869e3d0b..932284f0953e7807fc0f2291097c1ebdedfc0f74 100644
--- a/ltfatpy/tests/gabor/test_plotdgt.py
+++ b/ltfatpy/tests/gabor/test_plotdgt.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the plotdgt function
 
 NOTE: Only the non-graphical features of plotdgt are tested here
diff --git a/ltfatpy/tests/gabor/test_plotdgtreal.py b/ltfatpy/tests/gabor/test_plotdgtreal.py
index 0433094be314c30507d04b00e8fc0bd4c53f45e9..3fa60cca4a8c849f744bbac045b40066bf45cc18 100644
--- a/ltfatpy/tests/gabor/test_plotdgtreal.py
+++ b/ltfatpy/tests/gabor/test_plotdgtreal.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the plotdgtreal function
 
 NOTE: Only the non-graphical features of plotdgtreal are tested here
diff --git a/ltfatpy/tests/gabor/test_s0norm.py b/ltfatpy/tests/gabor/test_s0norm.py
index 41d1067b3cce3146d0cf022a8eb97b84a7a8f25d..61f7a8ab4e369dae7ea4033975da729d0d6aa93e 100644
--- a/ltfatpy/tests/gabor/test_s0norm.py
+++ b/ltfatpy/tests/gabor/test_s0norm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the s0norm function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/gabor/test_sgram.py b/ltfatpy/tests/gabor/test_sgram.py
index 4f944815eff603aab9c8e16e3ff0019554fdc0b4..b89a75b61a9a2f6a8e1cbc10046f57f31680730a 100644
--- a/ltfatpy/tests/gabor/test_sgram.py
+++ b/ltfatpy/tests/gabor/test_sgram.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the sgram function
 
 NOTE: The validity of the plotting features of sgram are not tested here, only
diff --git a/ltfatpy/tests/gabor/test_tfplot.py b/ltfatpy/tests/gabor/test_tfplot.py
index 0f1e55be47c73bba28297e6dcd524b2d8b07d6c6..bb26ca7b602dd4e668905cd98de88f3129b779d2 100644
--- a/ltfatpy/tests/gabor/test_tfplot.py
+++ b/ltfatpy/tests/gabor/test_tfplot.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the tfplot function
 
 NOTE: The validity of the plotting features of tfplot are not tested here, only
diff --git a/ltfatpy/tests/signals/test_greasy.py b/ltfatpy/tests/signals/test_greasy.py
index b23b39f1a477c859a83a95cf8d21cc5df0b30932..5c3791d6617f8e05249414fd7766923ab8760c14 100644
--- a/ltfatpy/tests/signals/test_greasy.py
+++ b/ltfatpy/tests/signals/test_greasy.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the greasy function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/signals/test_gspi.py b/ltfatpy/tests/signals/test_gspi.py
index 33a8b3a17950e2c03a23a96f9aec6ad9ea462aef..aaade0453223da152589e469b9b9cb861e17ea1a 100644
--- a/ltfatpy/tests/signals/test_gspi.py
+++ b/ltfatpy/tests/signals/test_gspi.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the gspi function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/signals/test_linus.py b/ltfatpy/tests/signals/test_linus.py
index 00e9389a36e78c189e09a3d5c438c3c2a3ef63cc..418d10a52dc74103190c6058906e99fc70b8ddb6 100644
--- a/ltfatpy/tests/signals/test_linus.py
+++ b/ltfatpy/tests/signals/test_linus.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the linus function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/sigproc/test_fir2long.py b/ltfatpy/tests/sigproc/test_fir2long.py
index dbec7cafa772ca1e03ce431c5a4a7e85c60aa152..64210458edeb6747103beb7a2f89a5e167adee4c 100644
--- a/ltfatpy/tests/sigproc/test_fir2long.py
+++ b/ltfatpy/tests/sigproc/test_fir2long.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the fir2long function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/sigproc/test_firkaiser.py b/ltfatpy/tests/sigproc/test_firkaiser.py
index c1422ff4dfb92996f8d4c826a0dafd91f4621174..dc7d13e787f774dd0b24aa443ce75b731f5c14cc 100644
--- a/ltfatpy/tests/sigproc/test_firkaiser.py
+++ b/ltfatpy/tests/sigproc/test_firkaiser.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the firkaiser function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/sigproc/test_firwin.py b/ltfatpy/tests/sigproc/test_firwin.py
index efe22e8d7d302a8677a76c9e9bb084f9fded6eeb..a8e73eec810374c771cc4ddb9b435506320cb191 100644
--- a/ltfatpy/tests/sigproc/test_firwin.py
+++ b/ltfatpy/tests/sigproc/test_firwin.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the firwin function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/sigproc/test_groupthresh.py b/ltfatpy/tests/sigproc/test_groupthresh.py
index bd2bb6ffde04c2f0916b0fcac5cb5dc8f819fe0a..fd28535990e97a02160f5d224e5ba4ba7055e070 100644
--- a/ltfatpy/tests/sigproc/test_groupthresh.py
+++ b/ltfatpy/tests/sigproc/test_groupthresh.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the groupthresh function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/sigproc/test_largestn.py b/ltfatpy/tests/sigproc/test_largestn.py
index 71e9709c40744523fa77e9d2de7fd6ca62ce4778..6fafedeebf16b193c3a514cbd0244dbc1f5f1592 100644
--- a/ltfatpy/tests/sigproc/test_largestn.py
+++ b/ltfatpy/tests/sigproc/test_largestn.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the largestn function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/sigproc/test_largestr.py b/ltfatpy/tests/sigproc/test_largestr.py
index f6726dbe44438f98867914c22b7c25e385ee4122..0cb586a7f051bbda24620c3ccffd573ba9b3c088 100644
--- a/ltfatpy/tests/sigproc/test_largestr.py
+++ b/ltfatpy/tests/sigproc/test_largestr.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the largestr function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/sigproc/test_long2fir.py b/ltfatpy/tests/sigproc/test_long2fir.py
index 47aa87d73fe49e361c1a2d8af69d7113fe3c6ae8..b0eb8e2104bd4d77654bde4c34c0de985cf18938 100644
--- a/ltfatpy/tests/sigproc/test_long2fir.py
+++ b/ltfatpy/tests/sigproc/test_long2fir.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the long2fir function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/sigproc/test_normalize.py b/ltfatpy/tests/sigproc/test_normalize.py
index 106bb4c198d9edd4b595ddf24fafb80823c91b1f..def0b62cfe9629b5dddc6a0d2dd6eb318814b698 100644
--- a/ltfatpy/tests/sigproc/test_normalize.py
+++ b/ltfatpy/tests/sigproc/test_normalize.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the normalize function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/sigproc/test_rms.py b/ltfatpy/tests/sigproc/test_rms.py
index 4db33a760043b2ae6b6278878beff2f22c828eff..c4046c425cac995f1e5292fdd3cc6c786c2cff72 100644
--- a/ltfatpy/tests/sigproc/test_rms.py
+++ b/ltfatpy/tests/sigproc/test_rms.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the rms function
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/tests/sigproc/test_thresh.py b/ltfatpy/tests/sigproc/test_thresh.py
index 9c21254e7513f27189452eeb4ac94e8e01c28857..cf9a1d3bd445561b4c25aeb520fe86a534dc14a0 100644
--- a/ltfatpy/tests/sigproc/test_thresh.py
+++ b/ltfatpy/tests/sigproc/test_thresh.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the thresh function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/tools/test_lcm.py b/ltfatpy/tests/tools/test_lcm.py
index 1814dc5e8769f4c54af26c91f530293e133d3037..cb6fe0cc468076a9b1a341ca090e0b1520b1c6ba 100644
--- a/ltfatpy/tests/tools/test_lcm.py
+++ b/ltfatpy/tests/tools/test_lcm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the lcm function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tests/tools/test_postpad.py b/ltfatpy/tests/tools/test_postpad.py
index f710ccf50c0c3f7b566c443dcbec432bcf2506d3..e25c65557b107aa85bb2ddd610b3dc9eb9bb0498 100644
--- a/ltfatpy/tests/tools/test_postpad.py
+++ b/ltfatpy/tests/tools/test_postpad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """Test of the postpad function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tools/lcm.py b/ltfatpy/tools/lcm.py
index 08d7bff226e7c4f66c6c7c57be03dce16dedb0de..76e6f7e486cb9c8e2d9c616eb27cb60c257c5d7d 100644
--- a/ltfatpy/tools/lcm.py
+++ b/ltfatpy/tools/lcm.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module computes the least common multiple
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tools/postpad.py b/ltfatpy/tools/postpad.py
index cd3a715c5349d2d7d73bbaaecc6f1e585367a8f8..81733b6de4c530419b5242d2065e9aac6799246a 100644
--- a/ltfatpy/tools/postpad.py
+++ b/ltfatpy/tools/postpad.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -10,7 +10,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -50,10 +50,6 @@
 # ######### COPYRIGHT #########
 
 
-
-
-
-
 """This module pads or truncates arrays
 
 Ported from ltfat_2.1.0/mex/postpad.m
diff --git a/setup.py b/setup.py
index ba394b7eaef6e0b4b2c7fb55ca0bcd989527fbda..d36131aae516318dfcb534478f9a4918113b4254 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 # -*- coding: utf-8 -*-
 # ######### COPYRIGHT #########
 #
-# Copyright(c) 2016
+# Copyright(c) 2017
 # -----------------
 #
 # * LabEx Archimède: http://labex-archimede.univ-amu.fr/
@@ -11,7 +11,7 @@
 # * Université d'Aix-Marseille : http://www.univ-amu.fr/
 #
 # This software is a port from LTFAT 2.1.0 :
-# Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
+# Copyright (C) 2005-2017 Peter L. Soendergaard <peter@sonderport.dk>.
 #
 # Contributors
 # ------------
@@ -29,7 +29,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.7
+# * ltfatpy version = 1.0.8
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -56,6 +56,8 @@
 
 
 
+
+
 from __future__ import print_function, division
 import sys
 import os