summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/add_newdocs.py2
-rw-r--r--numpy/core/fromnumeric.py4
-rw-r--r--numpy/core/numeric.py2
3 files changed, 7 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 4916a9611..358c60f7b 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -4191,6 +4191,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('sort',
argsort : Indirect sort.
lexsort : Indirect stable sort on multiple keys.
searchsorted : Find elements in sorted array.
+ partition: Partial sort.
Notes
-----
@@ -4255,6 +4256,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('partition',
--------
numpy.partition : Return a parititioned copy of an array.
argpartition : Indirect partition.
+ sort : Full sort.
Notes
-----
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
-----
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 1b3d5d5a8..1aa59ce58 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -2083,7 +2083,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8):
See Also
--------
- all, any, alltrue, sometrue
+ isclose, all, any
Notes
-----