Changes in / [d4791e5:4fe62ba]


Ignore:
Location:
python
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/demos/demo_mfcc.py

    rd4791e5 r4fe62ba  
    2424p = pvoc(win_s, hop_s)
    2525m = mfcc(win_s, n_filters, n_coeffs, samplerate)
     26
     27desc = []
     28tdesc = []
    2629
    2730mfccs = zeros([13,])
  • python/tests/test_zero_crossing_rate.py

    • Property mode changed from 100755 to 100644
    rd4791e5 r4fe62ba  
     1from aubio import fvec, zero_crossing_rate
     2
    13#! /usr/bin/env python
    24
    35from numpy.testing import TestCase
    4 
    5 from aubio import fvec, zero_crossing_rate
    66
    77buf_size = 2048
     
    1111    def setUp(self):
    1212        self.vector = fvec(buf_size)
     13
     14    def test(self):
     15        """ create and delete fvec """
     16        pass
    1317
    1418    def test_zeroes(self):
Note: See TracChangeset for help on using the changeset viewer.