Changeset b99e2a5
- Timestamp:
- Sep 16, 2017, 11:55:33 PM (7 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
- Children:
- 7b7a58e
- Parents:
- e7556a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_dct.py
re7556a1 rb99e2a5 41 41 a_in[3] = np.pi 42 42 a_expected = aubio.fvec(precomputed_some_ones) 43 assert_almost_equal(a_dct(a_in), a_expected, decimal= 7)43 assert_almost_equal(a_dct(a_in), a_expected, decimal=6) 44 44 45 45 def test_reconstruction(self): … … 61 61 """ test that creation fails with a non power-of-two size """ 62 62 # supports for non 2** fft sizes only when compiled with fftw3 63 size = 13 63 64 try: 64 65 with self.assertRaises(RuntimeError): 65 aubio.dct( 13)66 aubio.dct(size) 66 67 except AssertionError: 67 self.skipTest('creating aubio.dct with size %d did not fail' % win_s)68 self.skipTest('creating aubio.dct with size %d did not fail' % size)
Note: See TracChangeset
for help on using the changeset viewer.