Changeset 4c01c0f for interfaces/python
- Timestamp:
- Dec 25, 2009, 5:09:41 AM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 8212692, b8aaaff
- Parents:
- 474f297
- Location:
- interfaces/python
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/aubio/__init__.py
r474f297 r4c01c0f 1 1 import numpy 2 from _aubio import * 2 3 3 4 class fvec(numpy.ndarray): -
interfaces/python/test_aubio.py
r474f297 r4c01c0f 1 1 from numpy.testing import TestCase, run_module_suite 2 from numpy.testing import assert_equal3 from _aubio import *4 from numpy import array5 2 6 3 class aubiomodule_test_case(TestCase): 7 4 8 def setUp(self):5 def test_import(self): 9 6 """ try importing aubio """ 10 7 import aubio 11 8 12 9 if __name__ == '__main__': -
interfaces/python/test_cvec.py
r474f297 r4c01c0f 1 1 from numpy.testing import TestCase, run_module_suite 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 from _aubio import cvec3 from aubio import cvec 4 4 from numpy import array, shape, pi 5 5 -
interfaces/python/test_fft.py
r474f297 r4c01c0f 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 3 # WARNING: numpy also has an fft object 4 from _aubio import fft, cvec 5 from aubio import fvec 4 from aubio import fvec, fft, cvec 6 5 from numpy import array, shape 7 6 from math import pi -
interfaces/python/test_filter.py
r474f297 r4c01c0f 1 1 from numpy.testing import TestCase, run_module_suite 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 from _aubio import * 4 from aubio import fvec 3 from aubio import fvec, digital_filter 5 4 from numpy import array 6 5 -
interfaces/python/test_filterbank.py
r474f297 r4c01c0f 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 3 from numpy import array, shape 4 from _aubio import * 5 #from aubio import cvec 4 from aubio import cvec, filterbank 6 5 7 6 class aubio_filter_test_case(TestCase): -
interfaces/python/test_fvec.py
r474f297 r4c01c0f 1 1 from numpy.testing import TestCase, run_module_suite 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 from _aubio import * 4 from aubio import fvec 3 from aubio import fvec, zero_crossing_rate, alpha_norm, min_removal 5 4 from numpy import array, shape 6 5 -
interfaces/python/test_onsetdetection.py
r474f297 r4c01c0f 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 3 # WARNING: numpy also has an fft object 4 from _aubio import specdesc, cvec4 from aubio import specdesc, cvec 5 5 from numpy import array, shape, arange, zeros, log 6 6 from math import pi -
interfaces/python/test_phasevoc.py
r474f297 r4c01c0f 1 1 from numpy.testing import TestCase, run_module_suite 2 2 from numpy.testing import assert_equal, assert_almost_equal 3 from aubio import fvec 4 from _aubio import * 3 from aubio import fvec, cvec, pvoc 5 4 from numpy import array, shape 6 5
Note: See TracChangeset
for help on using the changeset viewer.