summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
Commit message (Expand)AuthorAgeFilesLines
* MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser2017-08-051-2/+2
* MAINT: Make `setxor1d' a bit clearer and speed it upwufangjie2017-07-281-5/+1
* make `setxor1d' a bit clear and speed upwufangjie2017-07-271-2/+3
* BUG: set default type for empty index array to `numpy.intp` (#9142)Konrad Kapp2017-05-201-2/+2
* DOC: fix docstring for np.isinStephan Hoyer2017-05-071-0/+1
* ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht2017-05-051-3/+99
* Added axis argument to numpy.uniquemartinosorb2016-11-131-11/+73
* BUG: return subclasses from ediff1dMattHarrigan2016-10-271-13/+12
* ENH: fast track default kwargs for ediff1dMattHarrigan2016-10-261-0/+4
* ENH: performance improvement to ediff1dMattHarrigan2016-10-181-14/+27
* DOC: Fix docstring warnings in documetation generation.Charles Harris2015-07-011-2/+4
* BUG: setdiff1d return dtypeChristian Brodbeck2015-05-071-6/+4
* Merge pull request #5619 from jaimefrio/unique_docstringJulian Taylor2015-03-011-3/+4
|\
| * DOC: Describe return_counts keyword in np.unique docstringJaime Fernandez2015-03-011-3/+4
* | ENH: speed-up in1d replacing sorting with fancy indexingjaimefrio2015-01-251-3/+4
* | Add examples for intersect1d and union1d of more than two arrays.Christian Brueffer2014-10-151-0/+10
* | BUG: np.unique with chararray + inverse_indexCJ Carey2014-09-231-1/+1
* | DOC: warn about using a set with 'in1d'.Patrick Peglar2014-08-311-0/+4
* | ENH: Speed up `unique` with `return_inverse`jaimefrio2014-08-271-2/+3
|/
* STY: Make files in numpy/lib PEP8 compliant.Charles Harris2014-07-311-7/+7
* MAINT: Fixes for problems in numpy/lib revealed by pyflakes.Charles Harris2014-07-311-4/+7
* BUG: Correct behavior for lists of tuples in unique, closes #4785jaimefrio2014-06-061-7/+1
* ENH: add a 'return_counts=' keyword argument to `np.unique`jaimefrio2014-04-051-26/+42
* BUG: Fixes #2799jaimefrio2014-02-211-2/+1
* ENH: add `invert` parameter to numpy.in1d().Julien Phalip2013-04-081-7/+26
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+3
* BUG: Fix regression for in1d with non-array inputSebastian Berg2012-12-081-0/+4
* DOC: merge doc wiki edits. A number of small edits in linalg and lib.Ralf Gommers2012-07-071-8/+8
* BUG: ticket #2063, make unique return consistent index.Bryan Van de Ven2012-03-301-3/+6
* ENH: missingdata: Implemented boolean assignment, working with NA masksMark Wiebe2011-08-271-1/+1
* ENH: speed up in1d() in the case of ar1 >> ar2. Closes #1603.rgommers2011-05-291-2/+10
* DEP: remove unique1d, setmember1d and intersect1d_nu.rgommers2011-03-111-76/+2
* Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt2009-10-251-4/+4
* Docstring update: libPauli Virtanen2009-10-021-45/+91
* Docstring updates, part 1Pauli Virtanen2009-10-021-11/+28
* Fix to setdiff1d (and masked version) + tests (#1133, by N.C.)Robert Cimrman2009-07-201-1/+4
* Enhancements to arraysetops (ticket #1133, by Neil Crighton)Robert Cimrman2009-07-081-196/+164
* Merge from doc wikiPauli Virtanen2009-06-191-26/+72
* Added setmember1d_nu to arraysetops.Robert Cimrman2009-06-081-19/+43
* Merge from the doc wikiPauli Virtanen2009-03-241-6/+16
* * replace np.asarray by np.asanyarray in unique1dpierregm2009-01-191-2/+8
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ...Pauli Virtanen2008-10-281-14/+14
* Removed unused imports.Alan McIntyre2008-09-091-1/+0
* Unique1d will now return unique as well as reverse indices. Fix order ofStefan van der Walt2008-08-131-8/+45
* ran reindentJarrod Millman2008-08-081-1/+0
* Merge from documentation editor.Stefan van der Walt2008-08-051-42/+73
* Standardized NumPy import as "import numpy as np".Alan McIntyre2008-07-231-84/+22
* Merge documentation changes from wiki.Stefan van der Walt2008-05-191-71/+103