Changeset 9f8cd9f
- Timestamp:
- May 2, 2016, 12:46:30 PM (9 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:
- 37ca459
- Parents:
- 867d66e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_cvec.py
r867d66e r9f8cd9f 1 1 #! /usr/bin/env python 2 2 3 from numpy.testing import TestCase , run_module_suite3 from numpy.testing import TestCase 4 4 from numpy.testing import assert_equal, assert_almost_equal 5 from aubio import cvec 6 from numpy import array, shape, pi 5 from aubio import cvec, float_type 6 import numpy as np 7 7 8 8 class aubio_cvec_test_case(TestCase): … … 10 10 def test_vector_created_with_zeroes(self): 11 11 a = cvec(10) 12 shape(a.norm)13 shape(a.phas)12 assert_equal(a.norm.shape[0], 10 / 2 + 1) 13 assert_equal(a.phas.shape[0], 10 / 2 + 1) 14 14 a.norm[0] 15 15 assert_equal(a.norm, 0.) … … 42 42 def test_assign_cvec_phas_slice(self): 43 43 spec = cvec(1024) 44 spec.phas[39:-1] = - pi44 spec.phas[39:-1] = -np.pi 45 45 assert_equal(spec.phas[0:39], 0) 46 assert_equal(spec.phas[39:-1], - pi)46 assert_equal(spec.phas[39:-1], -np.pi) 47 47 assert_equal(spec.norm, 0) 48 48 49 49 if __name__ == '__main__': 50 from unittestimport main50 from nose2 import main 51 51 main()
Note: See TracChangeset
for help on using the changeset viewer.