Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't share __all__ between numarray.linear_algebra and ↵ | Stefan van der Walt | 2006-11-22 | 1 | -1/+1 | |
| | | | | oldnumeric.linear_algebra. | |||||
* | Fix some compiler errors. | Travis Oliphant | 2006-11-17 | 1 | -1/+1 | |
| | ||||||
* | Python 2.5 fixes: replace int with Py_ssize_t where appropiate | cookedm | 2006-09-28 | 1 | -1/+1 | |
| | ||||||
* | Fix the fromfunction routine to use float as default. Update oldnumeric and ↵ | Travis Oliphant | 2006-09-28 | 1 | -3/+6 | |
| | | | | numarray compatibility modules. | |||||
* | Fix problem with alter_code1.py | Travis Oliphant | 2006-09-21 | 1 | -1/+1 | |
| | ||||||
* | Add one more import possibility. | Travis Oliphant | 2006-09-19 | 1 | -0/+2 | |
| | ||||||
* | Add convertsrc to alter_code1 and clean it up so it doesn't always write the ↵ | Travis Oliphant | 2006-09-19 | 1 | -22/+62 | |
| | | | | .orig file | |||||
* | Fix ticket #188 by returning the name of the dtype objects for data-type ↵ | Travis Oliphant | 2006-09-16 | 1 | -17/+47 | |
| | | | | objects without fields or sub-arrays that are in correct byte-order | |||||
* | Fix numarray.info function | Travis Oliphant | 2006-09-15 | 2 | -4/+21 | |
| | ||||||
* | Whitespace change in alter_code1.py | Travis Oliphant | 2006-09-07 | 1 | -2/+0 | |
| | ||||||
* | Add c_intp to ctypeslib. Add converttree to alter_code functions. Fix ↵ | Travis Oliphant | 2006-09-07 | 2 | -67/+15 | |
| | | | | ctypeslib when ctypes is not available. | |||||
* | Clean-up some un-needed default axes. Fix default axes of ma.sum and ma.product | Travis Oliphant | 2006-08-29 | 1 | -2/+2 | |
| | ||||||
* | Add axis arguments to various functions so as not to rely on the defaults. | Travis Oliphant | 2006-08-29 | 1 | -2/+2 | |
| | ||||||
* | Fix warning... | Travis Oliphant | 2006-08-25 | 1 | -1/+2 | |
| | ||||||
* | Fix NA_NewAllFromBuffer when shape is given | Travis Oliphant | 2006-08-24 | 1 | -21/+30 | |
| | ||||||
* | Remove usage of FatalError and fix linspace to end at stop if endpoint is True | Travis Oliphant | 2006-08-21 | 1 | -1/+1 | |
| | ||||||
* | Fix Python 2.5 compatibility to work with new b3 release | Travis Oliphant | 2006-08-14 | 2 | -2/+2 | |
| | ||||||
* | Change default axis argument of average and several masked array functions. ↵ | Travis Oliphant | 2006-08-13 | 1 | -1/+4 | |
| | | | | Move old behaviors to compatibility layer. | |||||
* | Finish adding the rest of numarray compatibility | Travis Oliphant | 2006-08-10 | 5 | -0/+33 | |
| | ||||||
* | Add qr decomposition to linalg | Travis Oliphant | 2006-08-10 | 6 | -0/+15 | |
| | ||||||
* | Finished up numpy.numarray.alter_code1 | Travis Oliphant | 2006-08-10 | 3 | -71/+108 | |
| | ||||||
* | Add output arguments to a few more functions for consistency | Travis Oliphant | 2006-08-10 | 1 | -1/+7 | |
| | ||||||
* | Update C-API to add features needed for numarray compatibility. Output ↵ | Travis Oliphant | 2006-08-10 | 6 | -64/+767 | |
| | | | | argument added for several functions and clipmode argument added for a few others. | |||||
* | Fix numarray compatibility layer so it at least imports. It's not finished ↵ | Travis Oliphant | 2006-08-08 | 2 | -14/+15 | |
| | | | | yet, but some functionality is there. | |||||
* | Fix import problem | Travis Oliphant | 2006-08-08 | 1 | -1/+1 | |
| | ||||||
* | Add numarray compatibility. | Travis Oliphant | 2006-08-08 | 7 | -150/+175 | |
| | ||||||
* | Fix segfault in Ticket #238 | Travis Oliphant | 2006-08-08 | 1 | -3/+7 | |
| | ||||||
* | Minor changes to alter_code scripts | Travis Oliphant | 2006-08-05 | 1 | -17/+4 | |
| | ||||||
* | Move source, info, and who to NumPy | Travis Oliphant | 2006-08-05 | 4 | -19/+82 | |
| | ||||||
* | Move converting code | Travis Oliphant | 2006-08-05 | 2 | -0/+308 | |
| | ||||||
* | Add diagflat. Begin to add numarray compatibility | Travis Oliphant | 2006-08-02 | 3 | -0/+644 | |
| | ||||||
* | fix numarray package a bit. | Travis Oliphant | 2006-07-08 | 2 | -0/+5 | |
| | ||||||
* | Apply npy_ and NPY_ prefixes to all C-API names that don't already have ↵ | Travis Oliphant | 2006-07-08 | 3 | -23/+31 | |
| | | | | PyArray_ prefixes. | |||||
* | Fix to NA_OptionalOutputArray so that resulting array is a copy of the ↵ | chanley | 2006-07-06 | 1 | -1/+2 | |
| | | | | master when the specified output array is NULL or None, i.e. omitted. flags. Submitted on behalf of jmiller. | |||||
* | Fix up numarray requirements flags. | Travis Oliphant | 2006-06-30 | 1 | -4/+4 | |
| | ||||||
* | Undo move to numpy_numarray. | Travis Oliphant | 2006-06-26 | 8 | -2/+2 | |
| | ||||||
* | Renamed numpy/numarray/numpy directory to numpy/numarray/numpy_numarray to ↵ | chanley | 2006-06-26 | 8 | -3/+3 | |
| | | | | be consistent with setup file and usage instructions. Modified _capi.c to use the new directory name. | |||||
* | Cleaned up casting code to also handle broadcasting. Several SciPy tests ↵ | Travis Oliphant | 2006-06-22 | 1 | -1/+0 | |
| | | | | are still failing... | |||||
* | Fixed build problem with Solaris compilers. Needed to remove return values ↵ | chanley | 2006-06-20 | 1 | -3/+3 | |
| | | | | from void functions in numarray c-api. | |||||
* | One more name change. | Travis Oliphant | 2006-06-20 | 7 | -1/+1 | |
| | ||||||
* | More fixes to C-API for numarray | Travis Oliphant | 2006-06-20 | 2 | -2/+2 | |
| | ||||||
* | Fix-up C-API support for numarray | Travis Oliphant | 2006-06-20 | 4 | -96/+185 | |
| | ||||||
* | Fix reference-count problem in z **= 1 and more numarray compatiblity fixes. | Travis Oliphant | 2006-06-20 | 5 | -72/+288 | |
| | ||||||
* | Add missing setup.py | Travis Oliphant | 2006-06-20 | 1 | -0/+19 | |
| | ||||||
* | Move include files. | Travis Oliphant | 2006-06-20 | 6 | -0/+1494 | |
| | ||||||
* | Adding numarray C-API | Travis Oliphant | 2006-06-20 | 2 | -1/+1 | |
| | ||||||
* | Draft of libnumarray C-API. | Travis Oliphant | 2006-06-20 | 2 | -2564/+1584 | |
| | ||||||
* | Adding numarray c-api compatibility. | Travis Oliphant | 2006-06-19 | 1 | -0/+4124 | |