summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a memory-leak in EnsureArray. Added __array_priority__ to array ↵Travis Oliphant2006-07-202-15/+11
| | | | scalars. Added bug-fixes part of david huard's histogramdd ticket.
* Clean up docstrings.Travis Oliphant2006-07-202-13/+37
|
* Apply patch for unique from #154Travis Oliphant2006-07-192-11/+30
|
* add some more docstringscookedm2006-07-181-0/+17
|
* Replace ScipyTestCase with NumpyTestCasecookedm2006-07-177-43/+43
|
* convertcode: replace ArrayType, NewAxis, and typecode =cookedm2006-07-131-4/+6
|
* Remove global symbols from numpy. Remove use of replacetypechars in convertcode.Travis Oliphant2006-07-121-4/+5
|
* Fix .choose docstring and allow more functions to be 'vectorized'Travis Oliphant2006-07-111-6/+11
|
* replace some bare except:'scookedm2006-07-101-1/+1
|
* Add simple get_numarray_include() function and typedefs for completenessTravis Oliphant2006-07-081-1/+17
|
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have ↵Travis Oliphant2006-07-081-4/+4
| | | | PyArray_ prefixes.
* Add docstring for bincount.Stefan van der Walt2006-07-071-1/+14
|
* Patch from David Huard to future-proof histogram2d testcookedm2006-07-061-3/+2
|
* Fix UserArray.Travis Oliphant2006-07-061-1/+1
|
* In meshgrid, use views on the input parameters to avoid changing theirStefan van der Walt2006-07-051-2/+2
| | | | shapes. Fixes #169.
* default dtype conversionsasha2006-07-051-0/+66
|
* Change the name to ctypes_load_libraryTravis Oliphant2006-07-031-2/+2
|
* Add a require function, a issubdtype, and a load_ctypes_function to NumPyTravis Oliphant2006-07-031-3/+29
|
* Improve c_numpy.pxd a bit. Re-name get_numpy_include() to get_include() and ↵Travis Oliphant2006-07-012-4/+8
| | | | deprecate old name. Add PyArray_ZEROS and PyArray_EMPTY macros which take type-number instead of data-type object.
* Adjust histogram2d a bit. Fix doc for logspace.Travis Oliphant2006-07-012-9/+19
|
* Added histogram2d #161Travis Oliphant2006-07-012-7/+100
|
* Make the default array type float.Travis Oliphant2006-06-302-7/+13
|
* Cast to double instead of float in digitize.Stefan van der Walt2006-06-302-2/+7
|
* Add docstring and tests for digitize.Stefan van der Walt2006-06-302-24/+45
|
* Add code to descend through a field and increment (or decrement) any object ↵Travis Oliphant2006-06-231-2/+4
| | | | reference counts.
* Clean up diag documentation. Clean up PyArray_INCREF and PyArray_XDECREF to ↵Travis Oliphant2006-06-231-2/+3
| | | | use new iterators.
* Add boolean indexing capability mixed with slice objects.Travis Oliphant2006-06-211-0/+2
|
* Make import_array and import_ufunc MACROS again.Travis Oliphant2006-06-201-2/+2
|
* Add meshgrid to NumPyTravis Oliphant2006-06-191-1/+36
|
* Fix Python 2.3 incompatibilitiescookedm2006-06-161-1/+14
| | | | | - use of a generator in core/tests/test_numeric.py - you can't set __name__ on a function in 2.3
* Fix deprecated for when the function doesn't have a __dict__cookedm2006-06-151-1/+6
|
* For `deprecated`, include a note about the function being deprecated in its ↵cookedm2006-06-151-0/+9
| | | | | | docstring. Also set the __name__ attribute and copy over function attributes.
* Expose deprecate functionTravis Oliphant2006-06-151-1/+9
|
* Remove print statement.Travis Oliphant2006-06-141-1/+0
|
* Preserve matrices. Fix #142Travis Oliphant2006-06-132-6/+6
|
* Fix-up imports a bit.Travis Oliphant2006-06-121-1/+1
|
* Fix-up oldnumeric moduleTravis Oliphant2006-06-121-1/+1
|
* Check-in name-space changes so that numpy.oldnumeric is the compatibility ↵Travis Oliphant2006-06-125-9/+8
| | | | module and numpy does not contain all of the names.
* Apply patch #137Travis Oliphant2006-06-122-17/+18
|
* Add docstrings, update common_type to return a scalar type instead of a ↵cookedm2006-06-101-14/+66
| | | | typecode.
* Add RNG interface and clean up old-interfaces to be separate from newer ones.Travis Oliphant2006-06-091-4/+5
|
* Fix unravel_index docstring.Stefan van der Walt2006-06-061-1/+1
|
* Remove deprecated names from ma and tests.Travis Oliphant2006-06-021-2/+2
|
* Use convertcode to replace matrixmultiply with dot. Add DeprecationWarning ↵Travis Oliphant2006-06-021-0/+2
| | | | to several old Numeric calls.
* Comment changes and change var and std to divide by N instead of N-1 Travis Oliphant2006-06-011-2/+3
|
* Add row_stack as alias to vstack to complement column_stack.Travis Oliphant2006-05-251-1/+3
|
* Rename fromflat to unravel_index. Add argwhere function. Change where ↵Travis Oliphant2006-05-171-6/+5
| | | | docstring to reflect truth.
* Fix for linspace (#118) was incomplete; good now.cookedm2006-05-172-1/+3
|
* #118: linspace should always return floatscookedm2006-05-162-1/+6
| | | | Patch from stefan; fix special case which could return an array of one int.
* Fix crash for zero-size arrays.Travis Oliphant2006-05-121-4/+49
|