summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorNils Werner <nils.werner@gmail.com>2013-07-24 13:06:53 +0200
committerNils Werner <nils.werner@gmail.com>2013-07-24 13:06:53 +0200
commit62e3e6206a2d537267eb1e718864535dae8d1b72 (patch)
tree64dd3bc1fc7aef74cfbfc16e58336b2b7a5f0649 /numpy/lib/function_base.py
parent7b2f20b406d27364c812f7a81a9c901afbd3600c (diff)
downloadnumpy-62e3e6206a2d537267eb1e718864535dae8d1b72.tar.gz
Link cumsum and diff to one another as theyre roughly the inverse of each other
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index d782f454a..5e433d3ab 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -962,7 +962,7 @@ def diff(a, n=1, axis=-1):
See Also
--------
- gradient, ediff1d
+ gradient, ediff1d, cumsum
Examples
--------