Functions | |
def | autocorr |
def | make_func |
Variables | |
tuple | f1 = make_func(1) |
tuple | f2 = make_func(2) |
tuple | m1 = numpy.mean(s1) |
tuple | m2 = numpy.mean(s2) |
tuple | r1 = numpy.correlate(s11, s11, mode='full') |
tuple | r2 = numpy.correlate(s22, s22, mode='full') |
list | s1 = [1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0] |
s11 = s1-m1 | |
list | s2 = [0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1] |
s22 = s2-m2 | |
list | s3 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] |
list | x = [1, 0, 1, 0, 1, 0, 1, 0] |
def test_func.autocorr | ( | x | ) |
Definition at line 39 of file test_func.py.
def test_func.make_func | ( | value_to_print | ) |
Definition at line 43 of file test_func.py.
tuple test_func::f1 = make_func(1) |
Definition at line 48 of file test_func.py.
tuple test_func::f2 = make_func(2) |
Definition at line 50 of file test_func.py.
tuple test_func::m1 = numpy.mean(s1) |
Definition at line 60 of file test_func.py.
tuple test_func::m2 = numpy.mean(s2) |
Definition at line 61 of file test_func.py.
tuple test_func::r1 = numpy.correlate(s11, s11, mode='full') |
Definition at line 64 of file test_func.py.
tuple test_func::r2 = numpy.correlate(s22, s22, mode='full') |
Definition at line 65 of file test_func.py.
list test_func::s1 = [1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0] |
Definition at line 57 of file test_func.py.
Definition at line 62 of file test_func.py.
list test_func::s2 = [0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1] |
Definition at line 59 of file test_func.py.
Definition at line 63 of file test_func.py.
list test_func::s3 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] |
Definition at line 83 of file test_func.py.
list test_func::x = [1, 0, 1, 0, 1, 0, 1, 0] |
Definition at line 56 of file test_func.py.