summaryrefslogtreecommitdiff
path: root/numpy/matrixlib
Commit message (Expand)AuthorAgeFilesLines
* DOC: Clarify the docstrings of matrix.argmin and matrix.argmax.Charles Harris2016-01-091-2/+10
* DOC: Update defmatrix.argmax docstring.Nicolás Della Penna2016-01-091-1/+1
* [TST] Refactor new raise_warnings logic for subpackage test suitesNathaniel J. Smith2015-12-301-3/+3
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-1/+1
* DEP: Stricter arg checking for array orderinggfyoung2015-12-181-6/+8
* STY: PEP8 and pyflakes fixes for numpy/matrixlib/tests.Charles Harris2015-07-253-110/+110
* DOC: Remove references to removed setasflat ndarray method.Charles Harris2015-07-011-1/+1
* BUG: np.nonzero behaving differently for 1-D arraysJaime Fernandez2015-05-132-4/+4
* DOC: Reconcile docstrings and function signatures where they disagreeRobert McGibbon2015-03-021-0/+2
* BUG: Make ravel function return 1-D arrays for matrix argument.Charles Harris2015-01-041-5/+5
* BUG: Make diag, diagonal return 1-D arrays for matrix arguments.Charles Harris2015-01-041-7/+7
* BUG: Fixes #5376: np.ravel to return same array typeGarrett-R2015-01-021-7/+11
* BUG: Closes #2015: diag returns ndarrayGarrett-R2014-12-081-1/+11
* DOC: document `ldict` and `gdict` in bmat, closes #5058jaimefrio2014-09-201-0/+6
* TST: pass sys.argv to run_module_suite by defaultJulian Taylor2014-09-043-1/+10
* Merge pull request #4932 from argriffing/ravel-docstringsCharles Harris2014-08-042-0/+87
|\
| * MAINT: use N.ndarray instead of core.multiarray.ndarrayalex2014-08-041-2/+1
| * DOC: clarify that matrix.ravel only copies if necessary; this is already testedalex2014-07-311-1/+2
| * MAINT: restore optional ravel order and add tests and more docstring linesalex2014-07-312-11/+76
| * MAINT: fix the importalex2014-07-311-1/+2
| * DOC: add minimal clarification to the matrix.ravel docstringalex2014-07-311-0/+21
* | DOC: matrix.squeeze docstringalex2014-08-011-0/+54
* | DOC: clarify matrix flatten docstringalex2014-07-311-2/+5
* | DOC: use m for matrix instead of a for arrayalex2014-07-311-4/+4
* | DOC: matrix flatten docstringalex2014-07-311-0/+33
|/
* ENH: add tobytes and stop using tostring in documentationJulian Taylor2014-02-111-2/+2
* DOC: make docstrings of matrix properties (.T, .H, .I, .A, .A1) work.Ralf Gommers2013-10-041-6/+6
* STY: Giant comma spacing fixup.Charles Harris2013-08-185-137/+137
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+0
* ENH: add quickselect algorithm and expose it via partitionJulian Taylor2013-08-121-2/+3
* ENH: Fix SyntaxError when matrix() is called with invalid stringLeon Weber2013-05-292-2/+15
* 2to3: Apply `map` fixer.Charles Harris2013-04-101-1/+1
* 2to3: Apply `print` fixer.Charles Harris2013-04-067-7/+7
* Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-2/+2
|\
| * DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2013-03-191-2/+2
* | 2to3: Use absolute imports.Charles Harris2013-03-286-7/+7
* | 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-2/+2
|/
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-017-1/+17
* 2to3: Fix callable.Charles Harris2013-02-281-1/+2
* DEP: Remove scons related files and code.Charles Harris2013-01-131-13/+0
* ENH: missingdata: Make numpy.all follow the NA || True == True ruleMark Wiebe2011-08-271-9/+18
* ENH: missingdata: Change things to help scipy pass its testsMark Wiebe2011-08-271-10/+26
* DOC: minor documentation fixesPauli Virtanen2011-06-251-1/+1
* STY: Replace assert by assert_ in tests. There remain 124 uses ofCharles Harris2011-04-053-80/+80
* STY: Update exception styles, trickier ones.Charles Harris2011-04-051-1/+1
* STY: Update exception style, easy ones.Charles Harris2011-04-051-4/+4
* ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ...Mark Wiebe2011-01-171-1/+1
* DOC: wiki merge, matrlixlib and some ndarray methods.rgommers2010-07-312-13/+13
* ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b)Pauli Virtanen2010-04-301-2/+3
* 3K: matrixlib: adapt to changes in str.translatePauli Virtanen2010-02-211-14/+26