Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Check-in name-space changes so that numpy.oldnumeric is the compatibility ↵ | Travis Oliphant | 2006-06-12 | 5 | -9/+8 | |
| | | | | module and numpy does not contain all of the names. | |||||
* | Apply patch #137 | Travis Oliphant | 2006-06-12 | 2 | -17/+18 | |
| | ||||||
* | Add docstrings, update common_type to return a scalar type instead of a ↵ | cookedm | 2006-06-10 | 1 | -14/+66 | |
| | | | | typecode. | |||||
* | Add RNG interface and clean up old-interfaces to be separate from newer ones. | Travis Oliphant | 2006-06-09 | 1 | -4/+5 | |
| | ||||||
* | Fix unravel_index docstring. | Stefan van der Walt | 2006-06-06 | 1 | -1/+1 | |
| | ||||||
* | Remove deprecated names from ma and tests. | Travis Oliphant | 2006-06-02 | 1 | -2/+2 | |
| | ||||||
* | Use convertcode to replace matrixmultiply with dot. Add DeprecationWarning ↵ | Travis Oliphant | 2006-06-02 | 1 | -0/+2 | |
| | | | | to several old Numeric calls. | |||||
* | Comment changes and change var and std to divide by N instead of N-1 | Travis Oliphant | 2006-06-01 | 1 | -2/+3 | |
| | ||||||
* | Add row_stack as alias to vstack to complement column_stack. | Travis Oliphant | 2006-05-25 | 1 | -1/+3 | |
| | ||||||
* | Rename fromflat to unravel_index. Add argwhere function. Change where ↵ | Travis Oliphant | 2006-05-17 | 1 | -6/+5 | |
| | | | | docstring to reflect truth. | |||||
* | Fix for linspace (#118) was incomplete; good now. | cookedm | 2006-05-17 | 2 | -1/+3 | |
| | ||||||
* | #118: linspace should always return floats | cookedm | 2006-05-16 | 2 | -1/+6 | |
| | | | | Patch from stefan; fix special case which could return an array of one int. | |||||
* | Fix crash for zero-size arrays. | Travis Oliphant | 2006-05-12 | 1 | -4/+49 | |
| | ||||||
* | Add missing Py_INCREF to fix ticket #95 | Travis Oliphant | 2006-05-09 | 1 | -0/+1 | |
| | ||||||
* | fix: `emath` instead of `nmath` | abaecker | 2006-05-03 | 1 | -1/+1 | |
| | ||||||
* | numpy.lib.scimath --> numpy.emath | Travis Oliphant | 2006-05-02 | 1 | -1/+1 | |
| | ||||||
* | Add math module to numpy namespace so numpy.math works same as Numeric.math. ↵ | Travis Oliphant | 2006-05-02 | 2 | -3/+4 | |
| | | | | Change numpy.math to numpy.nmath | |||||
* | Fix indentation error. | Travis Oliphant | 2006-04-27 | 1 | -1/+1 | |
| | ||||||
* | Add improved checking for number of arguments to support more functions | Travis Oliphant | 2006-04-27 | 1 | -10/+34 | |
| | ||||||
* | 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. | |||||
* | Add new C-API function in middle. Bump C-API version number. | Travis Oliphant | 2006-04-26 | 1 | -2/+2 | |
| | ||||||
* | Slightly different fix to vectorize. | Travis Oliphant | 2006-04-26 | 1 | -13/+3 | |
| | ||||||
* | Fix vectorize to handle scalar return values. | Travis Oliphant | 2006-04-26 | 1 | -2/+13 | |
| | ||||||
* | Make ext module typespecs to use PyMODINIT_FUNC that is essential for ↵ | Pearu Peterson | 2006-04-24 | 1 | -1/+1 | |
| | | | | mingw32 and c++ code combination to work correctly. | |||||
* | Fix kron so that the return type reflects the type of its arguments. Also, ↵ | Tim Hochberg | 2006-04-20 | 2 | -3/+55 | |
| | | | | raise an exception if the arguments are not rank-2 since the other cases were some combination of ambiguous or broken. | |||||
* | fix typo. | Travis Oliphant | 2006-04-18 | 1 | -1/+1 | |
| | ||||||
* | Fix bad __getattr__ code causing recursion. | Travis Oliphant | 2006-04-18 | 1 | -0/+2 | |
| | ||||||
* | 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. | |||||
* | Fixed where to always return a tuple | Travis Oliphant | 2006-04-12 | 1 | -1/+1 | |
| | ||||||
* | Fix Ticket #52 | Travis Oliphant | 2006-04-12 | 1 | -0/+1 | |
| | ||||||
* | Fixed 'from numpy.lib.scimath import *' failure. | Pearu Peterson | 2006-03-30 | 1 | -2/+2 | |
| | ||||||
* | Fix-up usage of asarray. | Travis Oliphant | 2006-03-29 | 1 | -2/+2 | |
| | ||||||
* | remove unused imports | Tim Leslie | 2006-03-25 | 3 | -7/+2 | |
| | ||||||
* | remove unused import | Tim Leslie | 2006-03-25 | 1 | -1/+1 | |
| | ||||||
* | Simplify interfaces. Fix UCHAR bug. | Travis Oliphant | 2006-03-24 | 1 | -2/+2 | |
| | ||||||
* | trivial whitespace changes, more explicit imports | Tim Leslie | 2006-03-23 | 1 | -10/+10 | |
| | ||||||
* | trivial whitespace changes | Tim Leslie | 2006-03-23 | 1 | -5/+5 | |
| | ||||||
* | explicitly use numerictypes | Tim Leslie | 2006-03-23 | 1 | -6/+8 | |
| | ||||||
* | shorten long comment line | Tim Leslie | 2006-03-23 | 1 | -1/+2 | |
| | ||||||
* | use docstring header, fix 'import *', remove duplicate definition of ↵ | Tim Leslie | 2006-03-23 | 1 | -13/+12 | |
| | | | | __float__, change first arg of method from 'a' to 'self' | |||||
* | change header comments into docstrings | Tim Leslie | 2006-03-23 | 2 | -26/+25 | |
| | ||||||
* | change use of deprecated NewAxis to newaxis | Tim Leslie | 2006-03-18 | 2 | -3/+3 | |
| | ||||||
* | Add extra arguments to corrcoef. | Travis Oliphant | 2006-03-16 | 1 | -2/+2 | |
| | ||||||
* | Fix scalar case for corrcoef | Travis Oliphant | 2006-03-16 | 1 | -1/+4 | |
| | ||||||
* | Third time's the charm. | Travis Oliphant | 2006-03-16 | 1 | -2/+3 | |
| | ||||||
* | Fix cov and corrcoef in numpy | Travis Oliphant | 2006-03-16 | 1 | -1/+1 | |
| | ||||||
* | Fix cov and corrcoef in numpy | Travis Oliphant | 2006-03-16 | 1 | -26/+32 | |
| | ||||||
* | clean up some imports | Tim Leslie | 2006-03-16 | 4 | -10/+12 | |
| | ||||||
* | Isolate Numeric compatibility to numpy.linalg.old | Travis Oliphant | 2006-03-15 | 1 | -1/+2 | |
| |