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/polynomial/legendre.py | |
parent | a4e99a7998a30d8e777510aaa5926b436a844f2b (diff) | |
download | numpy-0402e1c6a5cc5693a1f021446f20baebe9073890.tar.gz |
DOC: Fix cut and paste error, derivative <- integral.
Diffstat (limited to 'numpy/polynomial/legendre.py')
-rw-r--r-- | numpy/polynomial/legendre.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |