Changeset 6514bb6 for python/tests/test_mathutils.py
- Timestamp:
- Mar 3, 2013, 10:27:17 PM (12 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:
- 7a6521d
- Parents:
- 6a50b9e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_mathutils.py
r6a50b9e r6514bb6 4 4 from numpy.testing import assert_equal, assert_almost_equal 5 5 from aubio import bintomidi, miditobin, freqtobin, bintofreq, freqtomidi, miditofreq 6 from aubio import unwrap2pi 6 7 7 8 class aubio_mathutils(TestCase): 9 10 def test_unwrap2pi(self): 11 a = [ x/100. for x in range(-600,600,100) ] 12 b = [ unwrap2pi(x) for x in a ] 13 #print b 8 14 9 15 def test_miditobin(self): … … 25 31 freqs = [ miditofreq(a) for a in range(128) ] 26 32 midis = [ freqtomidi(a) for a in freqs ] 27 print midis28 33 29 34 if __name__ == '__main__':
Note: See TracChangeset
for help on using the changeset viewer.