diff options
-rw-r--r-- | doc/source/reference/routines.math.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/ufuncs.rst | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/doc/source/reference/routines.math.rst b/doc/source/reference/routines.math.rst index 7ce77c24d..0e7a60b76 100644 --- a/doc/source/reference/routines.math.rst +++ b/doc/source/reference/routines.math.rst @@ -143,6 +143,8 @@ Miscellaneous sign maximum minimum + fmax + fmin nan_to_num real_if_close diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index dcd4ae6d0..2154bca37 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -604,6 +604,10 @@ Comparison functions ``a > b`` and uses it to return either `a` or `b` (as a whole). A similar difference exists between ``minimum(a, b)`` and ``min(a, b)``. +.. autosummary:: + + fmax + fmin Floating functions ------------------ |