glotal pulse waveforms.
>>> op = chain(make_one_pole(0.8) for i in xrange(2))
>>> for x in (1,) + 30 * (0,): print ' ', ' ' * int(1000 * op(x)), '*'
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
>>> for x in (1,) + 25 * (0,) + (.25,) + 30 * (0,): print ' ', ' ' * int(1000 * op(x)), '*'
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
>>> op = chain(make_one_pole(0.6) for i in xrange(3))
>>> for x in (1,) + 20 * (0,): print ' ', ' ' * int(1000 * op(x)), '*'
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*