Esempio n. 1
0
def test_uels_failure():
    pysptk.uels(np.ones(256), 40)
Esempio n. 2
0
 def __test_itype(itype=0):
     pysptk.uels(x, itype=itype)
Esempio n. 3
0
 def __test_eps(etype=0, eps=0.0):
     pysptk.uels(x, etype=etype, eps=eps)
Esempio n. 4
0
def test_uels_failure():
    pysptk.uels(np.ones(256), 40)
Esempio n. 5
0
 def __test(order):
     c = pysptk.uels(x, order)
     assert np.all(np.isfinite(c))
Esempio n. 6
0
 def __test_eps(etype=0, eps=0.0):
     pysptk.uels(x, etype=etype, eps=eps)
Esempio n. 7
0
 def __test_itype(itype=0):
     pysptk.uels(x, itype=itype)
Esempio n. 8
0
 def __test(order):
     c = pysptk.uels(x, order)
     assert np.all(np.isfinite(c))
Esempio n. 9
0
def test_uels_failure():
    with pytest.raises(RuntimeError):
        pysptk.uels(np.ones(256), 40)
Esempio n. 10
0
def test_uels(order):
    x = windowed_dummy_data(1024)

    c = pysptk.uels(x, order)
    assert np.all(np.isfinite(c))