diff options
author | endolith <endolith@gmail.com> | 2013-11-24 11:21:02 -0500 |
---|---|---|
committer | endolith <endolith@gmail.com> | 2014-03-22 19:15:54 -0400 |
commit | de0e571e324e4f11187b79c91b0fe0cc03b27402 (patch) | |
tree | 192f1b1d7f0e06f444f4e8d507dc133f86677e20 /numpy/lib/polynomial.py | |
parent | 2b984294e98a7cf1e60455cf9022ca7b7e6a7a84 (diff) | |
download | numpy-de0e571e324e4f11187b79c91b0fe0cc03b27402.tar.gz |
DOC: Link convolve with polymul
Matlab uses `conv` for both convolution and polynomial multiplication. Clarifying that numpy has functions for each.
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 3d9b213c8..0dcb85bb2 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -806,6 +806,8 @@ def polymul(a1, a2): poly1d : A one-dimensional polynomial class. poly, polyadd, polyder, polydiv, polyfit, polyint, polysub, polyval + convolve : Array convolution. Same output as polymul, but has parameter + for overlap mode. Examples -------- |