summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Change axis=0 to axis=None to be consistent with methods and move axis=0 ↵Travis Oliphant2006-08-042-24/+132
| | | | functions to oldnumeric
* Convert so that axis arguments are consistent for methods and functions. ↵Travis Oliphant2006-08-041-2/+2
| | | | Place functions for which this changes the Numeric default into oldnumeric.
* Format docstrings to be consistent with others.Stefan van der Walt2006-08-031-3/+7
|
* Add diagflat. Begin to add numarray compatibilityTravis Oliphant2006-08-021-2/+21
|
* Fix longdouble machar problem (iterations too low)Travis Oliphant2006-07-311-17/+18
|
* Fix ticket #216. Also fix uses of DATA_RENEW so that object arrays will ↵Travis Oliphant2006-07-311-0/+2
| | | | raise an error instead of possibly memory-leak when reference counts aren't freed. Fix uses of longlong to Py_ssize_t and apppropriate FORMAT string.
* Py_OptimizeFlag is available from Python.hTravis Oliphant2006-07-311-1/+0
|
* Don't add docstrings in add_newdoc if run with -OOTravis Oliphant2006-07-311-0/+7
|
* numpy.lib.getlimits: replace typecodes with dtypescookedm2006-07-281-22/+19
|
* numpy.lib.machar: replace 'while 1' loops with 'for _ in max_iter'cookedm2006-07-281-8/+25
| | | | | If there are bugs in the scalar objects, the 'while 1' loops can potentially run forever, so we make sure they only go at most 1000 times.
* Back to 0.9.9 versionTravis Oliphant2006-07-261-1/+0
|
* Make version number 0.9.9 until 1.0 comes outTravis Oliphant2006-07-261-0/+2
|
* Fix-up convertcode and CAPI docsTravis Oliphant2006-07-251-2/+1
|
* 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
|