File tree Expand file tree Collapse file tree 2 files changed +10
-16
lines changed Expand file tree Collapse file tree 2 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ Set routines
3
3
4
4
.. currentmodule :: numpy
5
5
6
+ .. autosummary ::
7
+ :toctree: generated/
8
+
9
+ lib.arraysetops
10
+
6
11
Making proper sets
7
12
------------------
8
13
.. autosummary ::
Original file line number Diff line number Diff line change 1
1
"""
2
2
Set operations for arrays based on sorting.
3
3
4
- :Contains:
5
- unique,
6
- isin,
7
- ediff1d,
8
- intersect1d,
9
- setxor1d,
10
- in1d,
11
- union1d,
12
- setdiff1d
13
-
14
- :Notes:
4
+ Notes
5
+ -----
15
6
16
7
For floating point arrays, inaccurate results may appear due to usual round-off
17
8
and floating point comparison issues.
18
9
19
10
Speed could be gained in some operations by an implementation of
20
- sort() , that can provide directly the permutation vectors, avoiding
21
- thus calls to argsort() .
11
+ `numpy. sort` , that can provide directly the permutation vectors, thus avoiding
12
+ calls to `numpy. argsort` .
22
13
23
- To do: Optionally return indices analogously to unique for all functions.
24
-
25
- :Author: Robert Cimrman
14
+ Original author: Robert Cimrman
26
15
27
16
"""
28
17
import functools
You can’t perform that action at this time.
0 commit comments