diff options
| author | Robert Cimrman <cimrman3@ntc.zcu.cz> | 2006-01-09 12:09:24 +0000 |
|---|---|---|
| committer | Robert Cimrman <cimrman3@ntc.zcu.cz> | 2006-01-09 12:09:24 +0000 |
| commit | 669969980843dc207db170d99fa0884594c6bc7e (patch) | |
| tree | 9d3f6d1d3fd4647c0df9bfe3efa4a6ab055a124a /numpy/lib/info.py | |
| parent | cb69a9f6ce005671cd7b39ebb16d7469d958fa5a (diff) | |
| download | numpy-669969980843dc207db170d99fa0884594c6bc7e.tar.gz | |
Arraysetops added to numpy.lib
Diffstat (limited to 'numpy/lib/info.py')
| -rw-r--r-- | numpy/lib/info.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/numpy/lib/info.py b/numpy/lib/info.py index e7b097f1b..5a4d13182 100644 --- a/numpy/lib/info.py +++ b/numpy/lib/info.py @@ -115,6 +115,21 @@ machar_double -- MachAr instance storing the parameters of system Threading tricks ================ ParallelExec -- Execute commands in parallel thread. + +1D array set operations +======================= +Set operations for 1D numeric arrays based on sort() function. + +ediff1d -- Array difference (auxiliary function). +unique1d -- Unique elements of 1D array. +intersect1d -- Intersection of 1D arrays with unique elements. +intersect1d_nu -- Intersection of 1D arrays with any elements. +setxor1d -- Set exclusive-or of 1D arrays with unique elements. +setmember1d -- Return an array of shape of ar1 containing 1 where + the elements of ar1 are in ar2 and 0 otherwise. +union1d -- Union of 1D arrays with unique elements. +setdiff1d -- Set difference of 1D arrays with unique elements. + """ depends = ['core','testing'] |
