diff options
author | endolith <endolith@gmail.com> | 2013-05-16 23:51:02 -0400 |
---|---|---|
committer | endolith <endolith@gmail.com> | 2013-05-16 23:51:02 -0400 |
commit | bb6eb76de99447dd413d330181ca6fda188fcb04 (patch) | |
tree | 4c003b44390215b98b422bf8d015ae6c014dc11a /numpy/lib/function_base.py | |
parent | 0337cf2f8cf555912dd39a2767a0f7f9e6398257 (diff) | |
download | numpy-bb6eb76de99447dd413d330181ca6fda188fcb04.tar.gz |
DOC: Mention all min/max functions from all others, clarify differences
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 38 |
1 files changed, 28 insertions, 10 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index a7163a7ca..9f3b2a0f8 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1495,11 +1495,20 @@ def nanmin(a, axis=None): See Also -------- - numpy.amin : Minimum across array including any Not a Numbers. - numpy.nanmax : Maximum across array ignoring any Not a Numbers. - isnan : Shows which elements are Not a Number (NaN). - isfinite: Shows which elements are not: Not a Number, positive and - negative infinity + nanmax : + The maximum value of an array along a given axis, ignoring any NaNs. + amin : + The minimum value of an array along a given axis, propagating any NaNs. + fmin : + Element-wise minimum of two arrays, ignoring any NaNs. + minimum : + Element-wise minimum of two arrays, propagating any NaNs. + isnan : + Shows which elements are Not a Number (NaN). + isfinite: + Shows which elements are neither NaN nor infinity. + + amax, fmax, maximum Notes ----- @@ -1592,11 +1601,20 @@ def nanmax(a, axis=None): See Also -------- - numpy.amax : Maximum across array including any Not a Numbers. - numpy.nanmin : Minimum across array ignoring any Not a Numbers. - isnan : Shows which elements are Not a Number (NaN). - isfinite: Shows which elements are not: Not a Number, positive and - negative infinity + nanmin : + The minimum value of an array along a given axis, ignoring any NaNs. + amax : + The maximum value of an array along a given axis, propagating any NaNs. + fmax : + Element-wise maximum of two arrays, ignoring any NaNs. + maximum : + Element-wise maximum of two arrays, propagating any NaNs. + isnan : + Shows which elements are Not a Number (NaN). + isfinite: + Shows which elements are neither NaN nor infinity. + + amin, fmin, minimum Notes ----- |