diff -r 000000000000 -r 0efde00f9229 Z-trans/respol1.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Z-trans/respol1.py Fri May 27 14:24:59 2011 +0530 @@ -0,0 +1,12 @@ +#!/usr/bin/python +## 4.6 + +from respol import respol + +import scipy as sp +from scipy import signal + +num = sp.array([2,2,0]) +den = sp.array([1,2,-3]) + +res, pol = respol(num,den)