diff options
author | Spencer Hill <shill@atmos.ucla.edu> | 2017-09-18 13:32:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-18 13:32:18 -0700 |
commit | 08d60af925bb31e08259301a11b47b7d6f390ef2 (patch) | |
tree | 789da84ab45d2e48d09f21f85e035ed50a678193 /numpy/core/numeric.py | |
parent | 4df78667e5b38560310f2e5e4e6b980821cce43d (diff) | |
download | numpy-08d60af925bb31e08259301a11b47b7d6f390ef2.tar.gz |
Add equals to See Also; remove 'np.'
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 1f5d24936..4b78c16fd 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -2436,7 +2436,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False): See Also -------- - isclose, all, any + isclose, all, any, equals Notes ----- @@ -2451,7 +2451,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False): The comparison of `a` and `b` includes standard broadcasting, which means that `a` and `b` need not have the same shape in order for - allclose(a, b) to evaluate to True. (The same is true for `np.equals`.) + allclose(a, b) to evaluate to True. (The same is true for `equals`.) Examples -------- |