summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* extras : dropped the m prefix in mediff1d, mvander, mpolyfitpierregm2008-05-145-23/+37
| | | | mrecords: fixed __setitem__ to update the mask if needed.
* Restore change to docstring overwritten by wiki merge.Stefan van der Walt2008-05-141-2/+2
|
* Merge docstrings from wiki.Stefan van der Walt2008-05-143-25/+85
|
* the trunk is still cooking 1.1Jarrod Millman2008-05-141-1/+1
|
* extras: introduced mvander and mpolyfitpierregm2008-05-132-85/+190
|
* Back-out matrix changes from trunk. This breaks some test which need to be ↵Travis Oliphant2008-05-131-2/+5
| | | | fixed differently.
* Fix ticket #791.Travis Oliphant2008-05-134-7/+24
|
* Fix reST markup.Stefan van der Walt2008-05-121-3/+9
|
* power : fixed a bug when a scalar is the first argumentpierregm2008-05-122-7/+35
| | | | | MaskedArray.__pow__ : call power MaskedArray.__ipow__: works in place. Note that the _data part gets "fixed" (NaNs/Infs set to fill_value)
* core : power : use the quick-and-dirty approach: compute everything and mask ↵pierregm2008-05-122-15/+42
| | | | | | | afterwards : MaskedArray._update_from(obj) : ensure that _baseclass is a ndarray if obj wasn't one already : introduced clip in the namespace, just for convenience
* Use EquivTypes instead of equality testing for data-type comparison.Travis Oliphant2008-05-111-1/+1
|
* Break long line.Charles Harris2008-05-101-288/+303
| | | | | Reformat a bit. Remove trailing whitespace.
* Add the out= argument to the clip() function to bring it in line with the ↵Robert Kern2008-05-102-6/+34
| | | | .clip() method.
* core : power : mask all negative values when the exponent (b) doesn't ↵pierregm2008-05-092-3/+7
| | | | satisfy b==b.astype(int)
* core : power : mask all negative values when the exponent (b) doesn't ↵pierregm2008-05-092-6/+7
| | | | satisfy (abs(b-int(b))<np.finfo(float).precision)
* Moved docstrings to add_newdoc.py; added docstring for the class as a whole ↵aarchiba2008-05-092-170/+216
| | | | which describes __call__.
* Docstrings for ufunc methods add, reduce, outer, and the arcane reduceat.aarchiba2008-05-091-4/+166
|
* Test for ticket #551 part of r5140Pauli Virtanen2008-05-081-0/+8
|
* Additional tests of matrix indexing.aarchiba2008-05-081-3/+31
|
* Add some tests for scalar indexing, tolist(), and fancy indexing.Charles Harris2008-05-081-0/+29
|
* Remove un-needed attribute lookup in 1.2Travis Oliphant2008-05-071-1/+1
|
* * Make matrices return 1-dimensional array on item selection for 1.2\n * ↵Travis Oliphant2008-05-073-13/+20
| | | | Remove (now un-needed) tolist method from matrices\n * For ticket #551, copy data if start of memory is not aligned on itemsize location in optimized blas wrapper.
* core : prevent power to mask negative values when it should notpierregm2008-05-072-4/+10
|
* trunk open for 1.2 developmentJarrod Millman2008-05-071-1/+1
|
* core : force .compressed() to return a type(_baseclass) object (usually a ↵pierregm2008-05-052-6/+23
| | | | | | ndarray) : fixed a bug in .compressed() when the _baseclass is a matrix
* (no commit message)pierregm2008-05-021-1/+0
|
* core : clean up update_frompierregm2008-05-013-16/+17
|
* Replace tabs with spaces.Charles Harris2008-05-011-154/+154
|
* Remove trailing whitespace.Charles Harris2008-05-011-1/+1
|
* Remove trailing whitespace.Charles Harris2008-05-011-28/+28
|
* Fix grammar.Charles Harris2008-05-011-2/+2
|
* Remove dtype_or_type key word in favor of simpler interface.Travis Oliphant2008-05-011-23/+9
|
* Suppress test output.Stefan van der Walt2008-05-011-2/+1
|
* Support for Python types in x.view.Stefan van der Walt2008-05-013-14/+76
|
* Small cleanup and whitespace removal.Charles Harris2008-04-301-17/+16
|
* For x.view, change dtype into keyword argument.Stefan van der Walt2008-04-303-7/+19
|
* core : fixed a bug w/ array((0,0))/0.pierregm2008-04-303-4/+33
| | | | | | testutils : introduced assert_almost_equal/assert_approx_equal: use assert_almost_equal(a,b,decimal) to compare a and b up to decimal places use assert_approx_equal(a,b,decimal) to compare a and b up to b*10.**-decimal
* Check for error and fix spacing.Travis Oliphant2008-04-301-2/+3
|
* Disable underflow warning reporting when testing for arch + test (#759).David Cournapeau2008-04-292-0/+41
|
* Keep singular values and eigenvalues as 1D arrays until the matrix indexingCharles Harris2008-04-292-11/+7
| | | | | controversy is settled. This will also keep code that uses diag(ev), from breaking.
* Fix python_xerbla for compilers that do not have inline strlen defined.Stefan van der Walt2008-04-291-1/+2
|
* Add comments to savetxt.Stefan van der Walt2008-04-281-4/+10
|
* Support for multi formatting elements in savetxt [patch by David Huard].Stefan van der Walt2008-04-282-61/+80
| | | | Closes #663.
* Code style cleanups.Charles Harris2008-04-281-61/+98
|
* Rename and reformat pythonxerbla.Stefan van der Walt2008-04-283-35/+38
|
* Fix test of lstsqr to work with matrix tests.Charles Harris2008-04-272-5/+5
| | | | Fix lstsq
* Add tests for matrix return types.Charles Harris2008-04-272-9/+42
| | | | | Fix cond computations for matrices. lstsq is currently broken for matrices, will fix shortly.
* Make functions in linalg.py accept nestes lists.Charles Harris2008-04-272-44/+69
| | | | | Use wrap to keep matrix environment intact. Base patch from nmb.
* Enclose macros with ifs in do {} while (0).Charles Harris2008-04-262-28/+25
| | | | Lets try this again with clean files.
* Code style cleanups and fix for ticket #743.Charles Harris2008-04-263-853/+954
| | | | Lets try this without corrupted merge files.