summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
* Undoing changes mistakenly made on tag 1.0b4v1.0b4Travis Oliphant2006-08-282-12/+11
|
* Update tensordot.Travis Oliphant2006-08-281-9/+1
|
* Add tensordot placeholder.Travis Oliphant2006-08-271-2/+11
|
* Fix up names. insert ==> place, deletefrom ==> delete, insertinto ==> ↵Travis Oliphant2006-08-272-10/+10
| | | | insert, appendonto ==> append
* Fixes to the deletefrom, insertinto, functions...Travis Oliphant2006-08-261-29/+27
|
* Fix how deletefrom and insertinto handle objects with __array_wrap__ defined.Travis Oliphant2006-08-261-11/+45
|
* Fix broadcast-copy on fancy set-item.Travis Oliphant2006-08-261-17/+36
|
* Add deletefrom, insertinto, and appendontoTravis Oliphant2006-08-261-20/+135
|
* Added a delete functionTravis Oliphant2006-08-251-1/+42
|
* Re-factor fix to linspaceTravis Oliphant2006-08-211-3/+3
|
* Remove usage of FatalError and fix linspace to end at stop if endpoint is TrueTravis Oliphant2006-08-211-0/+2
|
* Fix-up issubdtype to be more usefulTravis Oliphant2006-08-151-2/+9
|
* Fix Python 2.5 compatibility to work with new b3 releaseTravis Oliphant2006-08-141-62/+0
|
* Move ctypes-related functions out of top-levelTravis Oliphant2006-08-141-108/+1
|
* Fix ndpointer and add tests from ticket #245Travis Oliphant2006-08-142-4/+72
|
* datatype --> dtype in ndpointer and fix logic of from_param checksTravis Oliphant2006-08-131-23/+28
|
* Allow for type-less ndpointer.Travis Oliphant2006-08-131-5/+8
|
* Improve ndpointer to allow shape and flags checking as well.Travis Oliphant2006-08-131-8/+55
|
* Remove _as_parameter_ attribute from arrays and add it to the ctypes object. ↵Travis Oliphant2006-08-131-2/+28
| | | | Create an ndpointer class factory to return classes that check for specific array types. These can be used in argtypes list to ctypes functions.
* Change default axis argument of average and several masked array functions. ↵Travis Oliphant2006-08-131-3/+2
| | | | Move old behaviors to compatibility layer.
* More fixes to masked array support of output arrays. Travis Oliphant2006-08-101-1/+1
|
* Fix adding docstrings of digitize, bincount, and add_docstring so it doesn't ↵Travis Oliphant2006-08-051-32/+41
| | | | happen twice.
* Move source, info, and who to NumPyTravis Oliphant2006-08-051-2/+276
|
* Move converting codeTravis Oliphant2006-08-052-308/+0
|
* Fix convertnumericA.py to fix transition from 'b' to 'B'Travis Oliphant2006-08-052-7/+44
|
* Move location of flatnonzeroTravis Oliphant2006-08-051-8/+0
|
* Fix uses of nonzero and add flatnonzeroTravis Oliphant2006-08-053-3/+15
|
* Add back dft stub and alter warning.Travis Oliphant2006-08-041-1/+1
|
* Add back a compatibility UserArray.Travis Oliphant2006-08-041-0/+3
|
* Many name-changes in oldnumeric. This may break some numpy code that was ↵Travis Oliphant2006-08-044-39/+21
| | | | using the oldnumeric interface.
* 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
|