Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ran reindent.py to clean up whitespace | Jarrod Millman | 2007-10-29 | 1 | -1/+0 | |
| | ||||||
* | Rename test classes to CapWords. | Stefan van der Walt | 2007-10-02 | 9 | -74/+74 | |
| | ||||||
* | Fix tri when dtype is bool (closes ticket #574). | Stefan van der Walt | 2007-09-30 | 1 | -3/+11 | |
| | ||||||
* | Add test -- dimensions for rot90. | Stefan van der Walt | 2007-09-20 | 1 | -0/+3 | |
| | ||||||
* | Fix string conversion of polynomial when leading coefficients are | Stefan van der Walt | 2007-08-06 | 1 | -0/+12 | |
| | | | | zero. Closes ticket #564. | |||||
* | Fix asfarray to return an array instead of a matrix. | Stefan van der Walt | 2007-08-01 | 1 | -0/+6 | |
| | ||||||
* | Add regression test for eye. | Stefan van der Walt | 2007-07-25 | 1 | -0/+2 | |
| | ||||||
* | Tile empty arrays. | Stefan van der Walt | 2007-07-10 | 1 | -0/+5 | |
| | ||||||
* | Clean up select docstring. | Stefan van der Walt | 2007-05-28 | 1 | -1/+7 | |
| | ||||||
* | Select should not modify output arguments. Add test for basic select ↵ | Stefan van der Walt | 2007-05-28 | 1 | -1/+15 | |
| | | | | functionality. | |||||
* | Add patch from dhuard to histogramdd. Fixes ticket #509. | Charles Harris | 2007-05-13 | 1 | -4/+8 | |
| | | | | | | Restructure restructured comments; avoid consolidated lists, they are too ugly to contemplate and move around where they aren't wanted. They can be fixed later if epydoc fixes things up. | |||||
* | Add iinfo based on a patch by Albert Strasheim (ticket #250). | Stefan van der Walt | 2007-05-13 | 1 | -1/+18 | |
| | ||||||
* | added simple test for weighted average | Eric Jones | 2007-04-11 | 1 | -0/+7 | |
| | ||||||
* | Add patch in Ticket #189 for histogramdd. Fixes bug reported by Ben Granett | Travis Oliphant | 2007-04-02 | 2 | -1/+36 | |
| | ||||||
* | Replace tabs with spaces. | Stefan van der Walt | 2007-03-23 | 1 | -9/+9 | |
| | ||||||
* | Fix segfault in N.float64, ticket #412. | Travis Oliphant | 2007-01-09 | 1 | -2/+4 | |
| | ||||||
* | Whitespace cleanup. | Stefan van der Walt | 2007-01-08 | 7 | -36/+32 | |
| | ||||||
* | fix for #407 and add unit test for it | Tim Leslie | 2007-01-08 | 1 | -0/+4 | |
| | ||||||
* | Fix tests for Boolean. | Travis Oliphant | 2006-12-24 | 1 | -8/+8 | |
| | ||||||
* | Fix tests to run cleanly with new, tighter error handling. | Tim Hochberg | 2006-10-19 | 2 | -0/+40 | |
| | ||||||
* | Fix kron for multiple-dimensions. kron is defined so tile(b, s) is the same ↵ | Travis Oliphant | 2006-10-09 | 1 | -3/+14 | |
| | | | | as kron(ones(s,b.dtype), b) | |||||
* | Kron is now N-dimensional, so remove rank check. | Stefan van der Walt | 2006-10-07 | 1 | -16/+0 | |
| | ||||||
* | Add test for insert. | Stefan van der Walt | 2006-10-07 | 1 | -0/+7 | |
| | ||||||
* | Add tests for tile and fix error. | Travis Oliphant | 2006-10-07 | 1 | -0/+11 | |
| | ||||||
* | Add tests for tickets #312, #322, for polynomial roots and for setting | Stefan van der Walt | 2006-10-06 | 1 | -0/+4 | |
| | | | | elements in object arrays. | |||||
* | Fix back repr of arrays to not have quote unless flexible. | Travis Oliphant | 2006-09-25 | 1 | -8/+8 | |
| | ||||||
* | Fix doctests for new dtype | Travis Oliphant | 2006-09-24 | 1 | -8/+8 | |
| | ||||||
* | Add tests to arraysetops for empty arrays. | Stefan van der Walt | 2006-09-19 | 1 | -0/+14 | |
| | ||||||
* | Add ediff1d support for empty arrays. | Stefan van der Walt | 2006-09-18 | 1 | -0/+12 | |
| | | | | | Fix ediff1d for to_begin or to_end = 0. Allow insert to operate on empty arrays. | |||||
* | Rename to histogramdd as original author said. | Travis Oliphant | 2006-09-15 | 1 | -5/+5 | |
| | ||||||
* | Fix up r_ so you can specify the minimum number of dimensions to force ↵ | Travis Oliphant | 2006-09-14 | 1 | -1/+1 | |
| | | | | arrays to and allow alteration of the concatenation axis and whether or not to transpose 1d arrays | |||||
* | Add histogramnd and fix histogram2d | Travis Oliphant | 2006-09-14 | 2 | -6/+50 | |
| | ||||||
* | Add axis arguments to various functions so as not to rely on the defaults. | Travis Oliphant | 2006-08-29 | 2 | -16/+16 | |
| | ||||||
* | Merge changes mistakenly added to 1.0b4 tag to the main trunk | Travis Oliphant | 2006-08-28 | 1 | -4/+4 | |
| | ||||||
* | Fix Python 2.5 compatibility to work with new b3 release | Travis Oliphant | 2006-08-14 | 1 | -62/+0 | |
| | ||||||
* | Fix ndpointer and add tests from ticket #245 | Travis Oliphant | 2006-08-14 | 1 | -0/+62 | |
| | ||||||
* | Convert so that axis arguments are consistent for methods and functions. ↵ | Travis Oliphant | 2006-08-04 | 1 | -2/+2 | |
| | | | | Place functions for which this changes the Numeric default into oldnumeric. | |||||
* | Fixed a memory-leak in EnsureArray. Added __array_priority__ to array ↵ | Travis Oliphant | 2006-07-20 | 1 | -1/+1 | |
| | | | | scalars. Added bug-fixes part of david huard's histogramdd ticket. | |||||
* | Apply patch for unique from #154 | Travis Oliphant | 2006-07-19 | 1 | -1/+9 | |
| | ||||||
* | Replace ScipyTestCase with NumpyTestCase | cookedm | 2006-07-17 | 7 | -43/+43 | |
| | ||||||
* | Patch from David Huard to future-proof histogram2d test | cookedm | 2006-07-06 | 1 | -3/+2 | |
| | ||||||
* | Added histogram2d #161 | Travis Oliphant | 2006-07-01 | 1 | -6/+27 | |
| | ||||||
* | Cast to double instead of float in digitize. | Stefan van der Walt | 2006-06-30 | 1 | -0/+5 | |
| | ||||||
* | Add docstring and tests for digitize. | Stefan van der Walt | 2006-06-30 | 1 | -22/+32 | |
| | ||||||
* | Fix for linspace (#118) was incomplete; good now. | cookedm | 2006-05-17 | 1 | -0/+2 | |
| | ||||||
* | #118: linspace should always return floats | cookedm | 2006-05-16 | 1 | -0/+5 | |
| | | | | Patch from stefan; fix special case which could return an array of one int. | |||||
* | Added NumpyTestCase.rundocs method to support running doc-tests via unittest ↵ | Pearu Peterson | 2006-04-26 | 2 | -7/+5 | |
| | | | | machinery - needed for running tests via testoob. | |||||
* | Fix kron so that the return type reflects the type of its arguments. Also, ↵ | Tim Hochberg | 2006-04-20 | 1 | -0/+32 | |
| | | | | raise an exception if the arguments are not rank-2 since the other cases were some combination of ambiguous or broken. | |||||
* | Fix object-loop reference counting in BUFFERED UFUNC. | Travis Oliphant | 2006-04-14 | 1 | -9/+6 | |
| | ||||||
* | Fix segfault on indexing (but functionality still not working). Add ↵ | Travis Oliphant | 2006-04-13 | 1 | -1/+6 | |
| | | | | vectorize test-case (ticket #52). Improve comments on broadcast failure. |