Skip to content
Snippets Groups Projects
  1. Feb 07, 2018
  2. Feb 06, 2018
  3. Jun 29, 2017
  4. May 15, 2017
  5. Apr 28, 2017
  6. Apr 25, 2017
  7. Apr 13, 2017
  8. Dec 20, 2016
  9. Dec 15, 2016
  10. Oct 12, 2016
  11. Oct 06, 2016
  12. Sep 30, 2016
  13. Aug 02, 2016
    • Florent Jaillet's avatar
      Small doc improvements · 1991f4dd
      Florent Jaillet authored
      1991f4dd
    • Florent Jaillet's avatar
      Modify fractions.gcd() import in lcm due to deprecation in Python 3.5 · ef52fca5
      Florent Jaillet authored
      According to the documentation of Python 3.5, the function fractions.gcd()
      is deprecated and should be replaced by math.gcd().
      
      So we modify the import of gcd() in lcm.py to import it from the math
      module when possible, keeping the import from the fractions module if not
      possible in order to keep the compatibility with older versions of Python.
      ef52fca5
    • Florent Jaillet's avatar
      Fix VisibleDeprecationWarnings reported in issue #2 · 646c23dc
      Florent Jaillet authored
      As reported in Issue #2, many VisibleDeprecationWarnings were raised
      when running the tests of ltfatpy with a recent version of numpy.
      
      This is now solved by insuring that values used for indexes in numpy
      arrays are integers, either by using integer division (//) where needed,
      or by explicitely converting to integer type (changing np.func(X/2) to
      int(np.func(X/2))), or by using int as the array dtype.
      646c23dc
  14. Jan 14, 2016
  15. Dec 18, 2015
  16. Dec 17, 2015
Loading