diff options
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/fromnumeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 89d731e32..ca9d55cb7 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -3274,12 +3274,13 @@ def around(a, decimals=0, out=None): See Also -------- ndarray.round : equivalent method - ceil, fix, floor, rint, trunc Notes ----- + `~numpy.round` is often used as an alias for `~numpy.around`. + For values exactly halfway between rounded decimal values, NumPy rounds to the nearest even value. Thus 1.5 and 2.5 round to 2.0, -0.5 and 0.5 round to 0.0, etc. |