summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polytemplate.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2010-05-21 05:36:08 +0000
committerCharles Harris <charlesr.harris@gmail.com>2010-05-21 05:36:08 +0000
commit1eac0c58c8168197f8f2a53ccadd4c449f32ff31 (patch)
tree82d113847a0fa4ee6bf424b981f8394745690cfc /numpy/polynomial/polytemplate.py
parentaf79cde3ecc5a7bf6b14c97698cad08f2bde82b8 (diff)
downloadnumpy-1eac0c58c8168197f8f2a53ccadd4c449f32ff31.tar.gz
ENH: Change deriv and integ method documentation of the Chebyshev and
Polynomial classes to reflect the enhanced behaviour of the base functions.
Diffstat (limited to 'numpy/polynomial/polytemplate.py')
-rw-r--r--numpy/polynomial/polytemplate.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/numpy/polynomial/polytemplate.py b/numpy/polynomial/polytemplate.py
index c2030db1b..835197834 100644
--- a/numpy/polynomial/polytemplate.py
+++ b/numpy/polynomial/polytemplate.py
@@ -442,7 +442,7 @@ class $name(pu.PolyBase) :
Parameters:
-----------
- m : positive integer
+ m : non-negative integer
The number of integrations to perform.
k : array_like
Integration constants. The first constant is applied to the
@@ -455,8 +455,7 @@ class $name(pu.PolyBase) :
Returns:
--------
integral : $name
- The integral of the original series defined with the same
- domain.
+ The integral of the original series with the same domain.
See Also
--------
@@ -480,14 +479,13 @@ class $name(pu.PolyBase) :
Parameters:
-----------
- m : positive integer
+ m : non-negative integer
The number of integrations to perform.
Returns:
--------
derivative : $name
- The derivative of the original series defined with the same
- domain.
+ The derivative of the original series with the same domain.
See Also
--------