diff options
author | Pauli Virtanen <pav@iki.fi> | 2008-10-27 23:40:52 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2008-10-27 23:40:52 +0000 |
commit | 7a70f54f515bb8c586c3967d62731a49217eef95 (patch) | |
tree | 1b3cf9f9a890f04a90e68f65bf85d2c75b309fbb /numpy/lib/polynomial.py | |
parent | 78733509e3a1f61c454fb23bae857e6a56a225de (diff) | |
download | numpy-7a70f54f515bb8c586c3967d62731a49217eef95.tar.gz |
Import documentation from doc wiki (part 1)
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index bce7f0e4e..7e3a02107 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -277,7 +277,7 @@ def polyint(p, m=1, k=None): def polyder(p, m=1): """ - Return the derivative of order m of a polynomial. + Return the derivative of the specified order of a polynomial. Parameters ---------- @@ -295,6 +295,7 @@ def polyder(p, m=1): See Also -------- polyint : Anti-derivative of a polynomial. + poly1d : Class for one-dimensional polynomials. Examples -------- |