diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-27 23:52:42 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-27 23:52:42 +0000 |
commit | a5fd5e5113be496adee5b49684f6740a895453cc (patch) | |
tree | 82c6c9550c60a592f1c47a92d0934ad667c5aa55 /scipy/base/polynomial.py | |
parent | e62a504d3b6634d02ebee2d7a15c56cf92312a8f (diff) | |
download | numpy-a5fd5e5113be496adee5b49684f6740a895453cc.tar.gz |
Fixed problem with correlate.
Diffstat (limited to 'scipy/base/polynomial.py')
-rw-r--r-- | scipy/base/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/polynomial.py b/scipy/base/polynomial.py index 8e6881af0..98a1903a3 100644 --- a/scipy/base/polynomial.py +++ b/scipy/base/polynomial.py @@ -36,7 +36,7 @@ def _lstsq(*args): __all__ = ['poly','roots','polyint','polyder','polyadd','polysub','polymul', - 'polydiv','polyval','poly1d','poly1d','polyfit'] + 'polydiv','polyval','poly1d','polyfit'] def poly(seq_of_zeros): |