diff options
author | Nils Werner <nils.werner@gmail.com> | 2013-07-24 13:06:53 +0200 |
---|---|---|
committer | Nils Werner <nils.werner@gmail.com> | 2013-07-24 13:06:53 +0200 |
commit | 62e3e6206a2d537267eb1e718864535dae8d1b72 (patch) | |
tree | 64dd3bc1fc7aef74cfbfc16e58336b2b7a5f0649 /numpy/lib/function_base.py | |
parent | 7b2f20b406d27364c812f7a81a9c901afbd3600c (diff) | |
download | numpy-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.py | 2 |
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 -------- |