diff options
Diffstat (limited to 'scipy/base/polynomial.py')
-rw-r--r-- | scipy/base/polynomial.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scipy/base/polynomial.py b/scipy/base/polynomial.py index 5de9c8c2c..ffdaa5849 100644 --- a/scipy/base/polynomial.py +++ b/scipy/base/polynomial.py @@ -288,10 +288,7 @@ def polymul(a1, a2): def deconvolve(signal, divisor): """Deconvolves divisor out of signal. Requires scipy.signal library """ - try: - import scipy.signal - except ImportError: - print "You need scipy.signal to use this function." + import scipy.signal num = atleast_1d(signal) den = atleast_1d(divisor) N = len(num) |