diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-09-14 14:53:26 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2013-09-14 16:01:02 +0200 |
commit | d4ef9b119f0954123de9acf5cf1fcb5358d99110 (patch) | |
tree | 76105714c88bd73f38422a5b5a6dba4ea0d0e0da /numpy/core/fromnumeric.py | |
parent | f5fceebd33950113fe523c60c94f641fe8b3dce7 (diff) | |
download | numpy-d4ef9b119f0954123de9acf5cf1fcb5358d99110.tar.gz |
DOC: add isclose and partition to reference and link some docs
also drop sometrue/alltrue link, its equivalent to any/all.
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 8d2c6ac95..abfa99e80 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -576,6 +576,7 @@ def partition(a, kth, axis=-1, kind='introselect', order=None): -------- ndarray.partition : Method to sort an array in-place. argpartition : Indirect partition. + sort : Full sorting Notes ----- @@ -659,6 +660,7 @@ def argpartition(a, kth, axis=-1, kind='introselect', order=None): -------- partition : Describes partition algorithms used. ndarray.partition : Inplace partition. + argsort : Full indirect sort Notes ----- @@ -707,6 +709,7 @@ def sort(a, axis=-1, kind='quicksort', order=None): argsort : Indirect sort. lexsort : Indirect stable sort on multiple keys. searchsorted : Find elements in a sorted array. + partition : Partial sort. Notes ----- @@ -819,6 +822,7 @@ def argsort(a, axis=-1, kind='quicksort', order=None): sort : Describes sorting algorithms used. lexsort : Indirect stable sort with multiple keys. ndarray.sort : Inplace sort. + argpartition : Indirect partial sort. Notes ----- |