diff --git a/VERSION b/VERSION
index d34b42b5ef213e23468b639818a3484b5885ee8f..523ee7d19813df490675e84521383b42b027540a 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-ltfatpy:1.0.5
+ltfatpy:1.0.6
 ltfat:2.1.0
diff --git a/copyright.py b/copyright.py
index 948411930ec82725574aca929f897ce652f0e4a9..6522e105f7e358df625a9454458527fd03a54b30 100644
--- a/copyright.py
+++ b/copyright.py
@@ -29,6 +29,18 @@ def fileUnStamping(filename):
         elif not is_stamp:
             print(line, end="")
 
+def fileRemoveSharps(filename):
+    """ Remove sharps 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  line.startswith("#"):
+            pass
+        else:
+            removeLine = False
+            print(line, end="")
 
 def fileStamping(filename, stamp):
     """ Write a stamp on a file
@@ -55,7 +67,7 @@ def getStamp(date, ltfatpy_version, ltfat_version):
     stamp = stamp.replace('\n', '\n# ')
     stamp = "# " + stamp
     stamp = stamp.replace("# \n", "#\n")
-    return stamp.strip()
+    return stamp.strip()[:-1]
 
 
 def getVersionsAndDate():
@@ -103,6 +115,13 @@ def eraseStamp():
         fileUnStamping(filename)
     fileUnStamping("setup.py")
 
+def removeSharps():
+    """ Remove undesirable sharps from all files """
+    files = findFiles(os.path.join(os.path.dirname(os.path.abspath(__file__)),
+                                   "ltfatpy"))
+    for filename in files:
+        fileRemoveSharps(filename)
+    fileRemoveSharps("setup.py")
 
 def usage(arg):
     print("Usage :")
diff --git a/doc/copyright.rst b/doc/copyright.rst
index 242d94d0686f624ad6b3164fd70b8139d6e9d292..f9191c7cc007f9b3177275d613b76239c4db85a9 100644
--- a/doc/copyright.rst
+++ b/doc/copyright.rst
@@ -26,7 +26,7 @@ time-frequency analysis and synthesis.
 Version
 -------
 
-* ltfatpy version = 1.0.5
+* ltfatpy version = 1.0.6
 * LTFAT version = 2.1.0
 
 Licence
diff --git a/ltfatpy/__init__.py b/ltfatpy/__init__.py
index 9adf7bbc03a02a9f89ecf72dc0dca1c5801d07e3..b1b34ad74d28e75a5f17063fa0e75480deb307a9 100644
--- a/ltfatpy/__init__.py
+++ b/ltfatpy/__init__.py
@@ -117,4 +117,4 @@ __all__ = ["arg_firwin", "assert_groworder", "assert_sigreshape_post",
            "long2fir", "normalize", "rms", "thresh", "lcm", "postpad"]
 
 
-__version__ = "1.0.5"
+__version__ = "1.0.6"
diff --git a/ltfatpy/comp/arg_firwin.py b/ltfatpy/comp/arg_firwin.py
index d5e8c759d7d8b6abd0c63aea3953500c3505e6c9..2adc276fdc3144bee5a76f1aeef9478e0c24694d 100644
--- a/ltfatpy/comp/arg_firwin.py
+++ b/ltfatpy/comp/arg_firwin.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 e69e94701c05ffbd6134e2e227e2e675109f8834..56131825f006b868101e36c416fdf9efaf0d6c1d 100644
--- a/ltfatpy/comp/assert_groworder.py
+++ b/ltfatpy/comp/assert_groworder.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6a585fe89a9cf5f5a2d30f9dda2899af12e60cfe..e3308e517d6d592faf745693c797b64e0d1f343a 100644
--- a/ltfatpy/comp/assert_sigreshape_post.py
+++ b/ltfatpy/comp/assert_sigreshape_post.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 27d907f7a590296c57f2026989ded010f93dd7ab..90cdf9cef27d03d12ec9ed9e0059686448373ee5 100644
--- a/ltfatpy/comp/assert_sigreshape_pre.py
+++ b/ltfatpy/comp/assert_sigreshape_pre.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 35e1b36c9d1ef919f67bc9ef053b58106748b202..a1703f8fbbbf6731eba938865c0eb11bdf64f5f1 100644
--- a/ltfatpy/comp/comp_dct.pyx
+++ b/ltfatpy/comp/comp_dct.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 96e14a61b24b365ab8ac86b32045aa1cdcc19ea5..beeb317a49aa560df1368e05ad1d965254ab7841 100644
--- a/ltfatpy/comp/comp_dst.pyx
+++ b/ltfatpy/comp/comp_dst.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 018b01bd880be3e20f3da139785deda003e06bca..040632252450a2f86a186e15e263d394606c7813 100644
--- a/ltfatpy/comp/comp_gabdual_long.pyx
+++ b/ltfatpy/comp/comp_gabdual_long.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 18d5a0829e7c9637e1227e4b304eff7e20e35db8..9fe00692d1561719c25d76db089acc24468f3785 100644
--- a/ltfatpy/comp/comp_gabtight_long.pyx
+++ b/ltfatpy/comp/comp_gabtight_long.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 f5394b0f3e4c7b408138b79edf9ba46f62e322a1..57fc7053c065de2039fd12ca3e312ef15347d903 100644
--- a/ltfatpy/comp/comp_hermite.py
+++ b/ltfatpy/comp/comp_hermite.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 81efa7d84542b8e26c74870a02a1804aa42da4c0..8f489489915acadc5aa1948db8900953d9acaecd 100644
--- a/ltfatpy/comp/comp_hermite_all.py
+++ b/ltfatpy/comp/comp_hermite_all.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 0b21b8a9b7290a4976398ab6baba25aaa73b2a69..51bfe15013c68785660e66b07fbaf3a669284ec7 100644
--- a/ltfatpy/comp/comp_isepdgt.pyx
+++ b/ltfatpy/comp/comp_isepdgt.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a0e7b3c98b6b7a6c98d5683bbca180ee72e379b9..aa22ba871cff4707af3ffb274e83d91b8eeb938c 100644
--- a/ltfatpy/comp/comp_isepdgtreal.pyx
+++ b/ltfatpy/comp/comp_isepdgtreal.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 ebe87fe4ccb55bfd022268b84a8e91170de5ed31..2bb0b1278c78ff6b2163b9f964a6549e8e87abcb 100644
--- a/ltfatpy/comp/comp_pgauss.pyx
+++ b/ltfatpy/comp/comp_pgauss.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 40d7fa7f777c9eae8f18199c77e24f9d548d6f76..18108b906c6f8de66d99dd1349c12019aeb0dc4c 100644
--- a/ltfatpy/comp/comp_sepdgt.pyx
+++ b/ltfatpy/comp/comp_sepdgt.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 088a4ebf1da80214b57568dca71b0782b956802a..eb4c9f079cd84ef8d9f089b08b2048bc087f61eb 100644
--- a/ltfatpy/comp/comp_sepdgtreal.pyx
+++ b/ltfatpy/comp/comp_sepdgtreal.pyx
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 464604c98cf29d8d788f1d8d288ff13345797256..32554e706708ee836ee7e69ed0f8f63d4fb6fa95 100644
--- a/ltfatpy/comp/comp_sigreshape_post.py
+++ b/ltfatpy/comp/comp_sigreshape_post.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 fe645baa52d8fec422ebff7f85d307a5e5019451..2716afb8453eea6c3aa39ee95a2c1f5e0738871f 100644
--- a/ltfatpy/comp/comp_sigreshape_pre.py
+++ b/ltfatpy/comp/comp_sigreshape_pre.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 d72c1b3efe359c42a514ac3572dfcb5447f26be6..8cc5373a6f616a0e487c0cd4d2c20d10afed611a 100644
--- a/ltfatpy/comp/comp_window.py
+++ b/ltfatpy/comp/comp_window.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 3e0a0b43795fdb913136c2284bdc0472895ca89a..f6143356f0a942237c47bd550120e053894e7291 100644
--- a/ltfatpy/comp/gabpars_from_windowsignal.py
+++ b/ltfatpy/comp/gabpars_from_windowsignal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 b3d8e7901dced57ecd1712daa9669944d96f5bc9..4ba51c05fec321b8b2e939c87f3df5a6bb16f19d 100644
--- a/ltfatpy/comp/ltfat.pxd
+++ b/ltfatpy/comp/ltfat.pxd
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 
 cdef enum dgt_phasetype:
     FREQINV = 0
diff --git a/ltfatpy/fourier/dcti.py b/ltfatpy/fourier/dcti.py
index 6d1c439888be24bf5bbeae980b8ac26425867ea0..325dc122ec3fd2333d6eeb81485e7350df26a5f4 100644
--- a/ltfatpy/fourier/dcti.py
+++ b/ltfatpy/fourier/dcti.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 
 """This module contains DCTI function
 
diff --git a/ltfatpy/fourier/dctii.py b/ltfatpy/fourier/dctii.py
index aae0519bf5718f111e9b92c359d4f39a21385625..205b6b1ae84e06f26330ed133ec737fc381f2585 100644
--- a/ltfatpy/fourier/dctii.py
+++ b/ltfatpy/fourier/dctii.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 03a107804f571e0612f31ea568f3def0693b5b2f..70c79be31ead888228ba89f69c3d80a579f0ed60 100644
--- a/ltfatpy/fourier/dctiii.py
+++ b/ltfatpy/fourier/dctiii.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 63cd3bf063d845cf41be64f8d296e6d318fcb8f0..d394f75e78208d735468e37c1a24b4781efd7f47 100644
--- a/ltfatpy/fourier/dctiv.py
+++ b/ltfatpy/fourier/dctiv.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 cedf723bd32d7e2868466ec97668c24ae06b0617..8d4a622cb6c42841e2ed791d3bcb899784029ae5 100644
--- a/ltfatpy/fourier/dft.py
+++ b/ltfatpy/fourier/dft.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 d6c5f145a9d298bebde080863cf8827162b36a22..33d42c86b838056963114f1724338a531f6cd207 100644
--- a/ltfatpy/fourier/dsti.py
+++ b/ltfatpy/fourier/dsti.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 0242e84be1dafbe7721f46f26f8e8f61672d4c85..06860b335ac07d174c76eac01eb5d27897e178fb 100644
--- a/ltfatpy/fourier/dstii.py
+++ b/ltfatpy/fourier/dstii.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a38e2c048a2ea0a1b63408046f2e72cee57e4250..cead1972776272e235661aa3d1af93c1ccf41bb9 100644
--- a/ltfatpy/fourier/dstiii.py
+++ b/ltfatpy/fourier/dstiii.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7dc1071c2439d396ddf167b87a68ffea72a92cc5..b10a3abeb8add0d9591f2a620940938fdd06f4e6 100644
--- a/ltfatpy/fourier/dstiv.py
+++ b/ltfatpy/fourier/dstiv.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 825745e730fc46dac80608e734eeb2d6961b4f18..57948feaca52db776ec1b497207eef32d5c1e751 100644
--- a/ltfatpy/fourier/fftindex.py
+++ b/ltfatpy/fourier/fftindex.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 fbbbeba6739de45514180958907dcec428b506b2..56441a9b4670343695f04dc2496cfafea0ee02cf 100644
--- a/ltfatpy/fourier/fftreal.py
+++ b/ltfatpy/fourier/fftreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a62298681c6ce080a4b4378fc80c8f72cf5cbca8..a2cec2f6e6375255843fd448ccb5366a5876cc5f 100644
--- a/ltfatpy/fourier/fftresample.py
+++ b/ltfatpy/fourier/fftresample.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 afe375cf24eda22aad5936679f8578ac5a1dd93a..158738edadd34b61c921fa5debf6fbb8fffc6f49 100644
--- a/ltfatpy/fourier/idft.py
+++ b/ltfatpy/fourier/idft.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 4b92fc5889b6997fb75ade3e5cff41646f808aee..d3b04d96117f76eb1d3caf20a7953e8a29d0d44b 100644
--- a/ltfatpy/fourier/ifftreal.py
+++ b/ltfatpy/fourier/ifftreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 95f85625456196bb7b1e0a20bc64ba0553eb85cc..ae7f41376324d1822b087ecfa6561bc5b3e41cea 100644
--- a/ltfatpy/fourier/isevenfunction.py
+++ b/ltfatpy/fourier/isevenfunction.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 b0fcb737ccc2713ffb12f324bf5cc0e051341986..1e1672ffead30fc5343629e0e8ef5381c95ed560 100644
--- a/ltfatpy/fourier/middlepad.py
+++ b/ltfatpy/fourier/middlepad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 b094b77e3f03cd4d8f192ae52d54dd3c7afd515a..51c69baafb98cfb8163992daa5e45e83cfb63e81 100644
--- a/ltfatpy/fourier/pderiv.py
+++ b/ltfatpy/fourier/pderiv.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 d0a95b7e4dcde916f4bce5f9ab1456706f3c4652..bfc1ae7d466cb51c2a74e6760210931339af0370 100644
--- a/ltfatpy/fourier/pgauss.py
+++ b/ltfatpy/fourier/pgauss.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 ecb9f0afdc98fc2208cda523f19f3c5e7a8b8c98..805b068d821cb8df4b95c922c2a69956da19562a 100644
--- a/ltfatpy/fourier/pherm.py
+++ b/ltfatpy/fourier/pherm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 73a2c4867c902f7ccb4a6f62f6cee3f4d1409c06..bd1fd6585675e156829e66ccf0f76ee15821dbb9 100644
--- a/ltfatpy/fourier/psech.py
+++ b/ltfatpy/fourier/psech.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 545fe6a52ff5647ad2fb08112ff36319110cf55a..f6b0fb05245bcb40ba57f390dbfe38acff337ab7 100644
--- a/ltfatpy/gabor/dgt.py
+++ b/ltfatpy/gabor/dgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 38b600b605621937223918467c1376c533d23b47..284c04f73b5487df67505e00816b93d61988b76f 100644
--- a/ltfatpy/gabor/dgtlength.py
+++ b/ltfatpy/gabor/dgtlength.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 de6a2a6261b0ce810ac20fd356949509e9dfffa3..ef30a492216dad213a9328b07419e0da4a67d1f3 100644
--- a/ltfatpy/gabor/dgtreal.py
+++ b/ltfatpy/gabor/dgtreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 3adeee44377546e7376f5f3ff6296ad3a821cd95..c05f21e1b212b423be56a6cb8bb2512bab8bf7d9 100644
--- a/ltfatpy/gabor/gabdual.py
+++ b/ltfatpy/gabor/gabdual.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 4427d268e1902c41c0490770f0269fec9f55ffba..d41d11394a147cd95a4e7127d76631bb8b252410 100644
--- a/ltfatpy/gabor/gabframediag.py
+++ b/ltfatpy/gabor/gabframediag.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 71862dcde034f875e457af06a08570891f20901f..b7944e7faeb98de23fda3d5160248e9431eca242 100644
--- a/ltfatpy/gabor/gabimagepars.py
+++ b/ltfatpy/gabor/gabimagepars.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6a5d3a18b1532e46a373e3e136af0c14b66d7e0b..0d34eeb7798b2d22aee60603f999750411f8ee79 100644
--- a/ltfatpy/gabor/gabphasegrad.py
+++ b/ltfatpy/gabor/gabphasegrad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c6ce7b541f1b6bafb50fee2e70f1d89b66905798..12d1f4cdade64d6540807153c608edd0309af73e 100644
--- a/ltfatpy/gabor/gabtight.py
+++ b/ltfatpy/gabor/gabtight.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 37cb2bbf1e662b388bf4633be7cc6d5730dff865..63b97a546eb9a3cfe5e097aee9c913a410eb7802 100644
--- a/ltfatpy/gabor/gabwin.py
+++ b/ltfatpy/gabor/gabwin.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 8ce98a6f8bfd5276c2da2f16487adb26f4ea4c4d..c57fdfa88c9ad96735da2a05c0580ce52643c742 100644
--- a/ltfatpy/gabor/idgt.py
+++ b/ltfatpy/gabor/idgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 25c879c01e032c1ba1566a99634da7413155a726..eb56a456bd56000aa749603310601bb84b973281 100644
--- a/ltfatpy/gabor/idgtreal.py
+++ b/ltfatpy/gabor/idgtreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c977b5fd7b171883486c2e68dd631033d8ba55cd..e41cb888ff0994718b33f47a0e899f214879f85d 100644
--- a/ltfatpy/gabor/instfreqplot.py
+++ b/ltfatpy/gabor/instfreqplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 02aacc715ba981f35c6c5884e6d3d84228a3e9e3..5025e96e8934890f646d3a24a965e0b4beb21719 100644
--- a/ltfatpy/gabor/phaselock.py
+++ b/ltfatpy/gabor/phaselock.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 f11d3b065a6f762f7a17b1ff59083d881fb077e4..c964d41517dee22ff039b8984b2ffe5405debbef 100644
--- a/ltfatpy/gabor/phaseplot.py
+++ b/ltfatpy/gabor/phaseplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 69fd8b528d3533f5b6506061ade089e3c1dcf744..dddc4db0e0cabda229e7a8f14a6e099460627b27 100644
--- a/ltfatpy/gabor/phaseunlock.py
+++ b/ltfatpy/gabor/phaseunlock.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 66f0bc79eee4f06c5bdb37dc216324b9c8bb4e6b..95b719d54b3cbb584900ace45ccde7e2aaa542cd 100644
--- a/ltfatpy/gabor/plotdgt.py
+++ b/ltfatpy/gabor/plotdgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a89878d2e94682148ef5ce72503bb3dd9e754908..693bb8ec70d95b24239b9a4589c1eba1c6474505 100644
--- a/ltfatpy/gabor/plotdgtreal.py
+++ b/ltfatpy/gabor/plotdgtreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 98519c6ea2bc17ef385c99abb2dd989ae2c620c8..70a087a58d58a0c4ccfd5dde9b0318540bf2e757 100644
--- a/ltfatpy/gabor/s0norm.py
+++ b/ltfatpy/gabor/s0norm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 e4b3ccc3b6b26f530a5d65bc3697e522eea1741f..8e6b4963603117277d821be32ba536a733bc1518 100644
--- a/ltfatpy/gabor/sgram.py
+++ b/ltfatpy/gabor/sgram.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6ea6324e8975476b756c83ba345f9da55ecd23b0..1f32f4929285ba1b60255879afd7810653878b73 100644
--- a/ltfatpy/gabor/tfplot.py
+++ b/ltfatpy/gabor/tfplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 8676af4adfdf5db5681953161c4e7e7deb869e21..8c95fd165f980c049c8a3617594158e2062f4658 100644
--- a/ltfatpy/signals/greasy.py
+++ b/ltfatpy/signals/greasy.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 bcdb816c4defeec0516e0c940a11c5bbc8064f3d..eb5002d40e8591d64bbd54ab24fb035249ef7493 100644
--- a/ltfatpy/signals/gspi.py
+++ b/ltfatpy/signals/gspi.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 """Module of glockenspiel signal loading
 
 .. moduleauthor:: Denis Arrivault
diff --git a/ltfatpy/signals/linus.py b/ltfatpy/signals/linus.py
index 0801c76ac2bcf1307dbb73b1b51e5e2ad3596c15..d2e2d74fb030e5cd101624fe7e16350212d4e9cf 100644
--- a/ltfatpy/signals/linus.py
+++ b/ltfatpy/signals/linus.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 1aa13d66169f55bd641e9afbd8633453b08aaf0a..84a402d5bd2bc42fdd956f523ea9fa33332ef39c 100644
--- a/ltfatpy/sigproc/fir2long.py
+++ b/ltfatpy/sigproc/fir2long.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7f3723a221279fb9a63008ed174afbb9abb159b8..5e1b3419fa547ec47507e91300c53abb738e6fd4 100644
--- a/ltfatpy/sigproc/firkaiser.py
+++ b/ltfatpy/sigproc/firkaiser.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 5a17921660cca8eeb34b58325a175af432d9fc73..162cc6750275d7b9f11a74237550a248f2d31be6 100644
--- a/ltfatpy/sigproc/firwin.py
+++ b/ltfatpy/sigproc/firwin.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 1eb6341f3676b0c729a0934cc6d5fb767598c206..a73bab491dbe3554757d01879a729391b4c597e6 100644
--- a/ltfatpy/sigproc/groupthresh.py
+++ b/ltfatpy/sigproc/groupthresh.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 ffbb11190f7375e421651927894a48a1671bca6b..d25d39da7f5fb35a58e3fa1a26801a03d49f9c1d 100644
--- a/ltfatpy/sigproc/largestn.py
+++ b/ltfatpy/sigproc/largestn.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7bd31702c799f5b52c3b1cfa00ece7735fec203c..296c7034f7b61bca7d126080eba4ad6b3190cfbc 100644
--- a/ltfatpy/sigproc/largestr.py
+++ b/ltfatpy/sigproc/largestr.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 bd85cd2c0f7a9275c81a5fec14e9414067c7163f..09ffc67ef86bb642b39d855be8f2c6feab8d53c2 100644
--- a/ltfatpy/sigproc/long2fir.py
+++ b/ltfatpy/sigproc/long2fir.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 4bbf26487b8bbee247bf640c039ad9bd07cfdb06..95b7d40571f8e2f1c6eaf9dda55af1ade928d28f 100644
--- a/ltfatpy/sigproc/normalize.py
+++ b/ltfatpy/sigproc/normalize.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c2316a7583b04d4ef71a5b3cd5f0278d679d28de..d690e622a43624f9d98273a1b9762855a4d5523e 100644
--- a/ltfatpy/sigproc/rms.py
+++ b/ltfatpy/sigproc/rms.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 f35cb375241084ea68d0ea7d2d6df0fa212aa96d..b883dfb57f6a987cde2e8fbf1ca297e2d8a7ae1a 100644
--- a/ltfatpy/sigproc/thresh.py
+++ b/ltfatpy/sigproc/thresh.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 127254a965816ba25232f12e4ec03acc307b688c..c9bc234c5279613066ead49b253df86b3e50c109 100644
--- a/ltfatpy/tests/comp/test_assert_sigreshape_post.py
+++ b/ltfatpy/tests/comp/test_assert_sigreshape_post.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 aacce1526eaa4ed6c8efd6a79e559716ac41b168..237573904b9d710bba8f15dc2850e5f56185b432 100644
--- a/ltfatpy/tests/comp/test_assert_sigreshape_pre.py
+++ b/ltfatpy/tests/comp/test_assert_sigreshape_pre.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 d314d58e8e61fdb3aa7308464b22e10df1e48803..202ffbadcca26f222a74b4672a9c39916e98362a 100644
--- a/ltfatpy/tests/comp/test_comp_dct.py
+++ b/ltfatpy/tests/comp/test_comp_dct.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 ec2555750265a0529cde32b52b048a2575844a84..f4ec42e3f087f6d91abbe2507b3f2655c392d505 100644
--- a/ltfatpy/tests/comp/test_comp_dst.py
+++ b/ltfatpy/tests/comp/test_comp_dst.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 0f0f49cb982cb8ae21ab6bf03ffb8fc4db7f58f6..883ee54499d70dabd97333e5d712230a10946c6b 100644
--- a/ltfatpy/tests/comp/test_comp_gabdual.py
+++ b/ltfatpy/tests/comp/test_comp_gabdual.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 98cb81788becd64604d1e5c93762e96d0993ca60..3c2b0e0d1a5b48d42012444450fea01c249ee76e 100644
--- a/ltfatpy/tests/comp/test_comp_hermite.py
+++ b/ltfatpy/tests/comp/test_comp_hermite.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 09d2c138b3f402b33aa7a478cf9bfededacf1322..325cfc96790937834a68b6f79150b6f1ec02fc21 100644
--- a/ltfatpy/tests/comp/test_comp_hermite_all.py
+++ b/ltfatpy/tests/comp/test_comp_hermite_all.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 459c526475d969df9a4e667585bea4b72d1608cc..fe2b98b0d4528e0ef17ae50faa49f0b5466ede7f 100644
--- a/ltfatpy/tests/comp/test_comp_isepdgt.py
+++ b/ltfatpy/tests/comp/test_comp_isepdgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a1c4f97424d44b8f745688dc030c09cbfa7f6ad8..4bf9c48cf24c83fce97d365076c3441c8af43ced 100644
--- a/ltfatpy/tests/comp/test_comp_pgauss.py
+++ b/ltfatpy/tests/comp/test_comp_pgauss.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 84da99ddbd15a71676b217109f3d2cdcd2d84de8..eabc4a9c9e1f1190d4435243875de27f3a47ca97 100644
--- a/ltfatpy/tests/comp/test_comp_sepdgt.py
+++ b/ltfatpy/tests/comp/test_comp_sepdgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 153f9217b4c8c711c0aa967d5a2752c4b8b923ca..6e46801291b18a88877175607780bf00aea5c5b9 100644
--- a/ltfatpy/tests/comp/test_comp_sigreshape.py
+++ b/ltfatpy/tests/comp/test_comp_sigreshape.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 dbe5fd7cb7b1c99f063d35aa0be55c3c2f19109b..94309d2307ed33d9dfea2c4a58f984ff7a6818af 100644
--- a/ltfatpy/tests/datasets/get_dataset_path.py
+++ b/ltfatpy/tests/datasets/get_dataset_path.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 0bde3f4490179fbdb0a0392320c3f6645c684b3e..7ac276b3e612712add9999f8866574e27b3c473a 100644
--- a/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_comp_dct_signal_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 86832d262bc847fc302f40e4f6ff9d54f79910c5..07be7313375bf52f5f8c11209fd6205bcb7ba602 100644
--- a/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_comp_dst_signal_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 18395e3bed1f7644eb9c6b4a41035b1f7e50c4d2..27f601a3cb5303bb946724ffbc3578a5b39906ee 100644
--- a/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_dgt_signal_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 11ca49f628107204b99addd818daf81132580a44..b0d46e58b95ad746601c45e63831194fcd684a62 100644
--- a/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_gabframediag_signal_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 8b0a15c5546e29aa6326c6379d2b5741e2ddf18d..b3311f4474bbbfb6926f151cc6d728b248e800ad 100644
--- a/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_gabtight_signal_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 820565a9ce8b07621e35115b788cd558d7d97559..0519bc05d1386f03b4823247d2d2f04422ada457 100644
--- a/ltfatpy/tests/datasets/read_ref_mat.py
+++ b/ltfatpy/tests/datasets/read_ref_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 2e82dd416aacda60b759cff07af80b68746cd0ad..be5f801d322841fde1e65bc5f0caed9b3f150b77 100644
--- a/ltfatpy/tests/datasets/read_s0norm_ex_mat.py
+++ b/ltfatpy/tests/datasets/read_s0norm_ex_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 a6615647fcc42b288ca053407d185cc2722b37b3..680b0bde1088a0927fd4d46cfad7406d7e221c97 100644
--- a/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py
+++ b/ltfatpy/tests/datasets/test_read_dgt_signal_ext.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 cc4ffc8bdfd2ec07ec15b226fcdc4dd566ac6804..f7d84dea17c3979147129e8c0f740bbfa3c24c21 100644
--- a/ltfatpy/tests/datasets/test_read_ref_mat.py
+++ b/ltfatpy/tests/datasets/test_read_ref_mat.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 efd6973eaccda2ad74565e0f00eeed24421f4287..cc06adbb79933b9a546abd17040a16a18775fead 100644
--- a/ltfatpy/tests/fourier/test_dct.py
+++ b/ltfatpy/tests/fourier/test_dct.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7edd5e4004bfabf9f42d989012f8c2dd8a813a5d..55078f28522762744faeb33573f4577a1b1f2e5a 100644
--- a/ltfatpy/tests/fourier/test_dft.py
+++ b/ltfatpy/tests/fourier/test_dft.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6ecf69079e37b43b3544d8869d90e9bcf6cf4a3b..09b00e85fd41bf081902317cb67bfd59283b46e0 100644
--- a/ltfatpy/tests/fourier/test_dst.py
+++ b/ltfatpy/tests/fourier/test_dst.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 4d956fa26c7a09e4598ee311a5eeefdc9fe50e7d..170b9117e1aa3f4b4930f742407ef043ccfd0654 100644
--- a/ltfatpy/tests/fourier/test_fftindex.py
+++ b/ltfatpy/tests/fourier/test_fftindex.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c3cb28aa1770d4d04e5ad5e9e6fb728bbaa261a4..8e56dd07d2ae5aa59545d20205e86931e1d27bcf 100644
--- a/ltfatpy/tests/fourier/test_fftreal.py
+++ b/ltfatpy/tests/fourier/test_fftreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 5e0a2f0e57a8afd55f11d8c16a23e46c24720919..014edd7a58f7d9b6d8206e1ea9f9bea17a68e376 100644
--- a/ltfatpy/tests/fourier/test_fftresample.py
+++ b/ltfatpy/tests/fourier/test_fftresample.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 5670938c45ab2c48374737a9c72bcb8a6a654e9f..371cf3d3be1ae449a42c34a030cf17f8a9b1b8d9 100644
--- a/ltfatpy/tests/fourier/test_idft.py
+++ b/ltfatpy/tests/fourier/test_idft.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 2330a4e8a201e929f9332f0554d7c25931b70aaf..c02941189566e399ae116cd2f4d5dbbb87306a59 100644
--- a/ltfatpy/tests/fourier/test_ifftreal.py
+++ b/ltfatpy/tests/fourier/test_ifftreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 29bb12afb757101d737fe9c6b2dcc2ce41b934e1..d4f9078a2fda46564256be5dc7844c40fd06026a 100644
--- a/ltfatpy/tests/fourier/test_isevenfunction.py
+++ b/ltfatpy/tests/fourier/test_isevenfunction.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 282e86a8d407a1828e63534bd10c9f2d1b81befd..90c5ecee93860afc092309a660579566f524c32d 100644
--- a/ltfatpy/tests/fourier/test_middlepad.py
+++ b/ltfatpy/tests/fourier/test_middlepad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 71cbdd2f09eac2c36dab0566897fe98d445a8d96..02f81cf2069baf2658b7ddc02939734a3221a6d5 100644
--- a/ltfatpy/tests/fourier/test_pderiv.py
+++ b/ltfatpy/tests/fourier/test_pderiv.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 63bdad749378689e53be922ed7cd49dde717a6f1..0fa3b066e0915485785a1353cdba0beb10897061 100644
--- a/ltfatpy/tests/fourier/test_pgauss.py
+++ b/ltfatpy/tests/fourier/test_pgauss.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 bb7c9fb4aaea03983a0c11d85c2add2840a55001..8724fe3c966de215f4580fd8067d77edbe3a01ea 100644
--- a/ltfatpy/tests/fourier/test_pherm.py
+++ b/ltfatpy/tests/fourier/test_pherm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6638639d8ae83233cc3c163f6e1f4595e33f6e2f..4843b7fae2ad67da4da3d9f159a5e164f8cc6efe 100644
--- a/ltfatpy/tests/fourier/test_psech.py
+++ b/ltfatpy/tests/fourier/test_psech.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 9a5d4a425b05e558f02f2c85c89a65ec6e1a314d..4f3b9702d7b6559f6c6992c7b20d72ce145efa85 100644
--- a/ltfatpy/tests/gabor/test_dgt.py
+++ b/ltfatpy/tests/gabor/test_dgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 70895d0d2168daefe5a644459203adb0138fe016..06b352e839b436b8297b223b8d8cc90ec388800f 100644
--- a/ltfatpy/tests/gabor/test_gabdual.py
+++ b/ltfatpy/tests/gabor/test_gabdual.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 58d5ae0405d1bb553d15a716006583e1b496b331..92dec2ce1438d9257e6f4749754a1645506889aa 100644
--- a/ltfatpy/tests/gabor/test_gabframediag.py
+++ b/ltfatpy/tests/gabor/test_gabframediag.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 8a00f07a37b02a9f313c984444ece361e60017d7..3dc6110c04bc838ad0294989ba6cafb75104fae3 100644
--- a/ltfatpy/tests/gabor/test_gabimagepars.py
+++ b/ltfatpy/tests/gabor/test_gabimagepars.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 1ec3ffbc1aa5993c6e5bb07773039bb8ac3f226e..75acfa5a01cc2800652bf12966678e72d73f891c 100644
--- a/ltfatpy/tests/gabor/test_gabphasegrad.py
+++ b/ltfatpy/tests/gabor/test_gabphasegrad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 55f394fa37e9f297f634452a3975a9eef64c00f2..4100690e052dd2b9f4e0e38f337a9fcda383420a 100644
--- a/ltfatpy/tests/gabor/test_gabtight.py
+++ b/ltfatpy/tests/gabor/test_gabtight.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7aa86865373618ead60006ab69584696294caaf4..49505844180d2db0632c4e87d97995f012a6fd33 100644
--- a/ltfatpy/tests/gabor/test_gabwin.py
+++ b/ltfatpy/tests/gabor/test_gabwin.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 abf67e1364102f86d51c31aebf276b71b69b2c7b..f1c1c259414f5d58d1070b9ae808add3a7e4847a 100644
--- a/ltfatpy/tests/gabor/test_idgt.py
+++ b/ltfatpy/tests/gabor/test_idgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 0783c7beab4d5666cdb1d333e4ea7c699505a231..6f67c583f932faa54a9d9d94847f516235a8c7fb 100644
--- a/ltfatpy/tests/gabor/test_instfreqplot.py
+++ b/ltfatpy/tests/gabor/test_instfreqplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 692cc93ed5b8bd8cacac2be91d57cd4bb5ad880b..07f9411ce9d376a79f6c02947f974e8e3475d7b2 100644
--- a/ltfatpy/tests/gabor/test_phaselock.py
+++ b/ltfatpy/tests/gabor/test_phaselock.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 1a0ac3a7429ba903782ba012ecc2f1b5fcff673d..b1d017d49db3eef830a40f05ea6e0d97f8f8ea30 100644
--- a/ltfatpy/tests/gabor/test_phaseplot.py
+++ b/ltfatpy/tests/gabor/test_phaseplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 9601dc77a7cac8b83371ab04a0da643cbd289245..a29773c13cc275d13bd521624eaf584db75463e1 100644
--- a/ltfatpy/tests/gabor/test_phaseunlock.py
+++ b/ltfatpy/tests/gabor/test_phaseunlock.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6ab8fd7be342516bc43872150ab3e3743cb6fc97..b61509c1c225791c308d2ffa9d826bf2a0b6b308 100644
--- a/ltfatpy/tests/gabor/test_plotdgt.py
+++ b/ltfatpy/tests/gabor/test_plotdgt.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 9d8df8d6e84970a095b6014c63e6e60696260ec3..064f858e7ad8279df245901212453141f0083c28 100644
--- a/ltfatpy/tests/gabor/test_plotdgtreal.py
+++ b/ltfatpy/tests/gabor/test_plotdgtreal.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 26f2f53351f0f58a896c89e27ad79f3b91e052ba..b46d3af08cee6cf764d8424791c896cac0f6ff5d 100644
--- a/ltfatpy/tests/gabor/test_s0norm.py
+++ b/ltfatpy/tests/gabor/test_s0norm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c28944736f12de01f0260fa6167663613ce63648..f3ac6a5a0b2d2ea7ca56a885ef9d14caf6a278a5 100644
--- a/ltfatpy/tests/gabor/test_sgram.py
+++ b/ltfatpy/tests/gabor/test_sgram.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 239d9722a57a35ee6fe06c31604bc7a92d1639b9..f6757cda43bd3131608a9076365655db221e37a9 100644
--- a/ltfatpy/tests/gabor/test_tfplot.py
+++ b/ltfatpy/tests/gabor/test_tfplot.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 dc9b8db1c7627e93269bdefb6ee41bf27cebbbae..b61d1345e1691abd202b9c9c49c28f335b7bed9a 100644
--- a/ltfatpy/tests/signals/test_greasy.py
+++ b/ltfatpy/tests/signals/test_greasy.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 e4bce3bf0709f276f56ffe4141a39d8e3a454b73..a91170010fc135fcb56a683a4b7636ea895fc85c 100644
--- a/ltfatpy/tests/signals/test_gspi.py
+++ b/ltfatpy/tests/signals/test_gspi.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 5c34096aaa94d1eab76f7bcfcf4eb4acaf74b075..e29077de18b90f30dc684de808a8d55a66d8c541 100644
--- a/ltfatpy/tests/signals/test_linus.py
+++ b/ltfatpy/tests/signals/test_linus.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6a1a9bb089adc3aa84b687160924e2acf3554642..e4f0aea01135a6cf9d62b33c76234cb75c3c57b6 100644
--- a/ltfatpy/tests/sigproc/test_fir2long.py
+++ b/ltfatpy/tests/sigproc/test_fir2long.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 658ccb5581af51771768621acdb9b112e77234f0..3e923fafd9188a5c2eea484a15ec49c728bf1fbd 100644
--- a/ltfatpy/tests/sigproc/test_firkaiser.py
+++ b/ltfatpy/tests/sigproc/test_firkaiser.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 c09412222f38721d2698e38e5790c9894ef1d0c5..7225d3baaf6a01df963a168e3ac5304b71ce380b 100644
--- a/ltfatpy/tests/sigproc/test_firwin.py
+++ b/ltfatpy/tests/sigproc/test_firwin.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 04f8aa08d262447927cf46828ae752dc7bd9182e..4818f2ccc7b2e2c95bb2de97bde19920b93b6d55 100644
--- a/ltfatpy/tests/sigproc/test_groupthresh.py
+++ b/ltfatpy/tests/sigproc/test_groupthresh.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 117134c4ee0253886f289bced5ecaae4b028b35b..458542d225f6e54aa9d3de3148a8716930543c21 100644
--- a/ltfatpy/tests/sigproc/test_largestn.py
+++ b/ltfatpy/tests/sigproc/test_largestn.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7c27b09d088be9d7497054c411e9fc36cd2d589d..b3a999e667a31997e9d3f33c0e9876c0b66c6bfa 100644
--- a/ltfatpy/tests/sigproc/test_largestr.py
+++ b/ltfatpy/tests/sigproc/test_largestr.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 065f54b24a54deb0e868fb4f40999241300e2e90..f21abac6e8dce17c3981e32b07453198b40bdc68 100644
--- a/ltfatpy/tests/sigproc/test_long2fir.py
+++ b/ltfatpy/tests/sigproc/test_long2fir.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 1db988326c8aec0dd2cd7bc9470c11a201689291..96b564742db7f08ec9e65b3d0c3ea828febe0830 100644
--- a/ltfatpy/tests/sigproc/test_normalize.py
+++ b/ltfatpy/tests/sigproc/test_normalize.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 9c16943abf816d7085fc27256309dc2026a14e4a..d8acbd1e9115d060a3b891a2fb4a358bd34e531d 100644
--- a/ltfatpy/tests/sigproc/test_rms.py
+++ b/ltfatpy/tests/sigproc/test_rms.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 6949a9cef86c295e33c70668c50ecbb52d43a3da..91af34d0623329a9411bb05590f37ac5252c7293 100644
--- a/ltfatpy/tests/sigproc/test_thresh.py
+++ b/ltfatpy/tests/sigproc/test_thresh.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 7d197c5ba09acbbb1981a54dbb10ae1890a18ac4..e646e8673406f09d67a79ab5ec3f90a48c4597fe 100644
--- a/ltfatpy/tests/tools/test_lcm.py
+++ b/ltfatpy/tests/tools/test_lcm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 8d96d4f2a0e3158fe60e421ede05f2820f32db42..f80c4b0bbb97a5d2709bef48d60ba26001cbe7b7 100644
--- a/ltfatpy/tests/tools/test_postpad.py
+++ b/ltfatpy/tests/tools/test_postpad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 """Test of the postpad function
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tools/lcm.py b/ltfatpy/tools/lcm.py
index e98614dbe8bd9c792c575ab8d9b2b6553c99a4c8..1e5a35e5527af844c06a7ae10be4ecd6a7cb8eaf 100644
--- a/ltfatpy/tools/lcm.py
+++ b/ltfatpy/tools/lcm.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 """This module computes the least common multiple
 
 .. moduleauthor:: Florent Jaillet
diff --git a/ltfatpy/tools/postpad.py b/ltfatpy/tools/postpad.py
index 48211dc8d095bddd0d6ce3f8a41b495b67544074..448fff4a5878e8691d7ff14c04c1825e4f640c81 100644
--- a/ltfatpy/tools/postpad.py
+++ b/ltfatpy/tools/postpad.py
@@ -28,7 +28,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -48,8 +48,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### 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 e1711f383c6cd09ec6a9725a6416f7b2eec02e91..903ee9ec56d24c393f083f2463fb5e29dc4d573f 100755
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 # Version
 # -------
 #
-# * ltfatpy version = 1.0.5
+# * ltfatpy version = 1.0.6
 # * LTFAT version = 2.1.0
 #
 # Licence
@@ -49,8 +49,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # ######### COPYRIGHT #########
-#
-#
+
+
+
 
 from __future__ import print_function, division
 import sys