diff options
author | Ben Elliston <bje@air.net.au> | 2020-05-19 17:05:21 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 10:05:21 +0300 |
commit | 74c111f0c40978ad064daabfe17658a308721a2d (patch) | |
tree | 992888ad8c834c31970a5f40bba3b677ac6fed58 /numpy/core/numeric.py | |
parent | 8cb86fd7b454b40c7b822146d5e26c55fdc183ec (diff) | |
download | numpy-74c111f0c40978ad064daabfe17658a308721a2d.tar.gz |
DOC: Add math.isclose to See Also (#16283)
* DOC: Move math.isclose note to See Also.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 8bd4e241b..05f0b7820 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -2230,6 +2230,7 @@ def isclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False): See Also -------- allclose + math.isclose Notes ----- |