diff options
Diffstat (limited to 'numpy/doc/ufuncs.py')
-rw-r--r-- | numpy/doc/ufuncs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/ufuncs.py b/numpy/doc/ufuncs.py index eecc15083..c99e9abc9 100644 --- a/numpy/doc/ufuncs.py +++ b/numpy/doc/ufuncs.py @@ -75,7 +75,7 @@ The axis keyword can be used to specify different axes to reduce: :: >>> np.add.reduce(np.arange(10).reshape(2,5),axis=1) array([10, 35]) -**.accumulate(arr)** applies the binary operator and generates an an +**.accumulate(arr)** applies the binary operator and generates an equivalently shaped array that includes the accumulated amount for each element of the array. A couple examples: :: |