diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-01-03 08:25:55 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-01-09 11:09:38 -0700 |
commit | 0402e1c6a5cc5693a1f021446f20baebe9073890 (patch) | |
tree | 843a36c6cda9dc6d786f437bd3cb5bbd51d55f84 /numpy | |
parent | a4e99a7998a30d8e777510aaa5926b436a844f2b (diff) | |
download | numpy-0402e1c6a5cc5693a1f021446f20baebe9073890.tar.gz |
DOC: Fix cut and paste error, derivative <- integral.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/polynomial/chebyshev.py | 2 | ||||
-rw-r--r-- | numpy/polynomial/hermite.py | 2 | ||||
-rw-r--r-- | numpy/polynomial/hermite_e.py | 2 | ||||
-rw-r--r-- | numpy/polynomial/laguerre.py | 2 | ||||
-rw-r--r-- | numpy/polynomial/legendre.py | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/numpy/polynomial/chebyshev.py b/numpy/polynomial/chebyshev.py index 39c58f2dd..22dc6a88c 100644 --- a/numpy/polynomial/chebyshev.py +++ b/numpy/polynomial/chebyshev.py @@ -991,7 +991,7 @@ def chebint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 diff --git a/numpy/polynomial/hermite.py b/numpy/polynomial/hermite.py index cd9b212f3..e8b19de4c 100644 --- a/numpy/polynomial/hermite.py +++ b/numpy/polynomial/hermite.py @@ -752,7 +752,7 @@ def hermint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 diff --git a/numpy/polynomial/hermite_e.py b/numpy/polynomial/hermite_e.py index 20f3d0e6e..61745e261 100644 --- a/numpy/polynomial/hermite_e.py +++ b/numpy/polynomial/hermite_e.py @@ -750,7 +750,7 @@ def hermeint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 diff --git a/numpy/polynomial/laguerre.py b/numpy/polynomial/laguerre.py index 2c664efad..abf31b07b 100644 --- a/numpy/polynomial/laguerre.py +++ b/numpy/polynomial/laguerre.py @@ -751,7 +751,7 @@ def lagint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 diff --git a/numpy/polynomial/legendre.py b/numpy/polynomial/legendre.py index 8dd332f07..c010c71a2 100644 --- a/numpy/polynomial/legendre.py +++ b/numpy/polynomial/legendre.py @@ -615,7 +615,7 @@ def legpow(c, pow, maxpower=16) : Parameters ---------- c : array_like - l1-D array of Legendre series coefficients ordered from low to + 1-D array of Legendre series coefficients ordered from low to high. pow : integer Power to which the series will be raised @@ -791,7 +791,7 @@ def legint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 |