Changeset b84c0c2 for interfaces/python
- Timestamp:
- Jul 11, 2012, 9:45:12 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:
- 012b324
- Parents:
- 451b05d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/demo_filterbank.py
-
Property
mode
changed from
100644
to100755
r451b05d rb84c0c2 1 from aubio import filterbank, fvec 1 #! /usr/bin/python 2 3 try: 4 from aubio import filterbank, fvec 5 except ImportError: 6 import localaubio 7 from aubio import filterbank, fvec 2 8 3 9 f = filterbank(9, 1024) … … 5 11 freqs = fvec(freq_list) 6 12 f.set_triangle_bands(freqs, 48000) 7 f.get_coeffs().T8 13 9 14 from pylab import loglog, show 10 15 loglog(f.get_coeffs().T, '+-') 11 16 show() 12 -
Property
mode
changed from
Note: See TracChangeset
for help on using the changeset viewer.