demo_filterbank.py: added simple demo
authorPaul Brossier <piem@piem.org>
Wed, 11 Jul 2012 19:45:12 +0000 (13:45 -0600)
committerPaul Brossier <piem@piem.org>
Wed, 11 Jul 2012 19:45:12 +0000 (13:45 -0600)
interfaces/python/demo_filterbank.py [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 19c09af..1b90ad3
@@ -1,12 +1,16 @@
-from aubio import filterbank, fvec
+#! /usr/bin/python
+
+try:
+  from aubio import filterbank, fvec
+except ImportError:
+  import localaubio
+  from aubio import filterbank, fvec
 
 f = filterbank(9, 1024)
 freq_list = [60, 80, 200, 400, 800, 1600, 3200, 6400, 12800, 15000, 24000]
 freqs = fvec(freq_list)
 f.set_triangle_bands(freqs, 48000)
-f.get_coeffs().T
 
 from pylab import loglog, show
 loglog(f.get_coeffs().T, '+-')
 show()
-