diff options
author | Darcy Meyer <darcy2252755@gmail.com> | 2017-12-14 22:22:43 -0500 |
---|---|---|
committer | Darcy Meyer <darcy2252755@gmail.com> | 2017-12-14 22:22:43 -0500 |
commit | de7e99df33b51021f1bae8df4eec3f8cc259a3e5 (patch) | |
tree | ca82f49b60a00f54e0e0d96ab929d8c32db725e2 /numpy | |
parent | d233e1f4c176de8b1bf1365aac48caa10610a402 (diff) | |
download | python-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.tar.gz python-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.tar.bz2 python-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.zip |
DOC: clarify that np.absolute == np.abs
See #9841
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/code_generators/ufunc_docstrings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py index 504d7e6a9..0625e2a6e 100644 --- a/numpy/core/code_generators/ufunc_docstrings.py +++ b/numpy/core/code_generators/ufunc_docstrings.py @@ -41,7 +41,7 @@ def add_newdoc(place, name, doc): add_newdoc('numpy.core.umath', 'absolute', """ - Calculate the absolute value element-wise. + Calculate the absolute value element-wise. Equivalent to ``numpy.abs``. Parameters ---------- |