diff options
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 5735b6124..069a28feb 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -1378,7 +1378,8 @@ def compress(condition, a, axis=None, out=None): See Also -------- take, choose, diag, diagonal, select - ndarray.compress : Equivalent method. + ndarray.compress : Equivalent method in ndarray + np.extract: Equivalent method when working on 1-D arrays numpy.doc.ufuncs : Section "Output arguments" Examples |