diff options
author | Yuval Ofek <yuval.ofek007@gmail.com> | 2021-10-30 15:27:40 +0000 |
---|---|---|
committer | Yuval Ofek <yuval.ofek007@gmail.com> | 2021-10-30 15:27:40 +0000 |
commit | f0f398f4f252318e68b4cd21b34acf981f8b0fe7 (patch) | |
tree | a7f61d85fc0e33a89393b8c9b87fb665d507173c /doc/source | |
parent | d85523a7433baab1734a5436123cda9497124516 (diff) | |
download | numpy-f0f398f4f252318e68b4cd21b34acf981f8b0fe7.tar.gz |
DOC: centralized min-max documentation under 'extrema finding' subsection in mathematical functions page
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/routines.math.rst | 21 | ||||
-rw-r--r-- | doc/source/reference/routines.statistics.rst | 6 |
2 files changed, 17 insertions, 10 deletions
diff --git a/doc/source/reference/routines.math.rst b/doc/source/reference/routines.math.rst index 3c2f96830..2a09b8d20 100644 --- a/doc/source/reference/routines.math.rst +++ b/doc/source/reference/routines.math.rst @@ -143,6 +143,21 @@ Handling complex numbers conj conjugate +Extrema Finding +--------------- +.. autosummary:: + :toctree: generated/ + + maximum + fmax + amax + nanmax + + minimum + fmin + amin + nanmin + Miscellaneous ------------- @@ -160,11 +175,7 @@ Miscellaneous fabs sign heaviside - maximum - minimum - fmax - fmin - + nan_to_num real_if_close diff --git a/doc/source/reference/routines.statistics.rst b/doc/source/reference/routines.statistics.rst index c675b6090..cd93e6025 100644 --- a/doc/source/reference/routines.statistics.rst +++ b/doc/source/reference/routines.statistics.rst @@ -9,11 +9,7 @@ Order statistics .. autosummary:: :toctree: generated/ - - amin - amax - nanmin - nanmax + ptp percentile nanpercentile |