summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
authorRobert Cimrman <cimrman3@ntc.zcu.cz>2007-11-20 14:26:44 +0000
committerRobert Cimrman <cimrman3@ntc.zcu.cz>2007-11-20 14:26:44 +0000
commitd9976a976eac6480aa4380a0605245f529921722 (patch)
tree586653bebfb01ff04f2afea77fad39cfe6d16bbc /numpy/lib/arraysetops.py
parent4ed186d89894e4156ea5875c142984d0f013327d (diff)
downloadnumpy-d9976a976eac6480aa4380a0605245f529921722.tar.gz
Edited module docstring.
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index fe08912e7..6693fa81c 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -1,7 +1,7 @@
"""
Set operations for 1D numeric arrays based on sorting.
-Contains:
+:Contains:
ediff1d,
unique1d,
intersect1d,
@@ -11,6 +11,8 @@ Contains:
union1d,
setdiff1d
+:Notes:
+
All functions work best with integer numerical arrays on input (e.g. indices).
For floating point arrays, innacurate results may appear due to usual round-off
and floating point comparison issues.
@@ -25,10 +27,10 @@ numpy.unique() - it should be the same.
To do: Optionally return indices analogously to unique1d for all functions.
-Author: Robert Cimrman
-
created: 01.11.2005
last revision: 07.01.2007
+
+:Author: Robert Cimrman
"""
__all__ = ['ediff1d', 'unique1d', 'intersect1d', 'intersect1d_nu', 'setxor1d',
'setmember1d', 'union1d', 'setdiff1d']