summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Docstring fixes to fromnumeric, to better mirror ndarray docstrings.Pauli Virtanen2008-04-261-17/+45
|
* Fix two typos in ndarray docstrings.Pauli Virtanen2008-04-261-2/+2
|
* Revert to 5092.Charles Harris2008-04-262-25/+28
|
* Rewrite most ndarray docstrings: RST-reformat old and add new ones.Pauli Virtanen2008-04-261-212/+902
| | | | | | | | | Most of the docstrings are adapted from those of the functions in core.fromnumeric. I edited the ndarray method docstrings to closely match the function docstrings. I didn't yet fix the discrepancy in ndarray.reshape and fromnumeric.reshape docstrings re ValueError raising.
* revert to 5092Charles Harris2008-04-261-66/+57
|
* Add semicolons to end of macros. This helps editors and such get theCharles Harris2008-04-261-57/+66
| | | | formatting right. Do some small code cleanup.
* Sprinkle some do {} while (0) magic around macros with if statements. TheyCharles Harris2008-04-262-28/+25
| | | | | should lose the semi-colons too, but I don't want to risk breaking out of tree code.
* Docstrings: correct description of `dtype` in prod, cumsum, cumprod (was OK ↵Pauli Virtanen2008-04-261-48/+49
| | | | in sum, product)
* Docstrings in fromnumeric: very small fixes.Pauli Virtanen2008-04-261-3/+3
|
* Docstring improvements for all, any, alltrue, sometrue, clip, compress + ↵Pauli Virtanen2008-04-261-31/+118
| | | | smaller stylistic changes to others.
* Code style cleanups.Charles Harris2008-04-261-141/+214
|
* histogram: an error is raised for varying bin widths only if normed=True.dhuard2008-04-251-3/+13
|
* Added an ignore warning in the test to avoid buildbot messages.dhuard2008-04-251-0/+2
|
* Fix to histogram with respect to block updating.adhuard2008-04-251-6/+6
|
* Modified histogram according to the discussion on the numpy ML.dhuard2008-04-252-65/+252
| | | | This transitions from the old behavior to the new behavior using the new keyword.