summaryrefslogtreecommitdiff
path: root/scipy/base/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed unused requirement that compare deal with misbehaved arrays.Travis Oliphant2005-10-281-40/+15
|
* Altered default flags in PyArray_BufferConverter and fixed signbit and friends.Travis Oliphant2005-10-282-2/+2
|
* Fixed problem with correlate.Travis Oliphant2005-10-272-23/+43
|
* Fix 0-d array indexing.Travis Oliphant2005-10-272-2/+17
|
* Fix for rank-0 arrays. Now a[0] = 1 throws an IndexError, just likeedschofield2005-10-271-1/+6
| | | | | | | reading from a[0] does. ** Note: assigning a[-1] = 0 still segfaults! **
* More docstring fixes for mean() and sum().edschofield2005-10-271-17/+12
|
* Trivial changes to a.mean() docstringedschofield2005-10-271-2/+2
|
* Improved docstrings:edschofield2005-10-271-8/+47
| | | | | | | | | * Fuller explanation of default casting behaviour of a.sum(), a.mean(), scipy.sum(), and scipy.average() * Changed some array variable names from 'x' to 'a' in function_base.py for consistency with docstrings in arraymethods.c * Other cosmetic fixes to docstrings and code formatting
* Fixed stepping issue for length-1 arrays.Travis Oliphant2005-10-271-1/+1
|
* Fixed problem with temporary allocation in PyArray_Transpose.Travis Oliphant2005-10-261-5/+5
|
* Fixes to array_ass_item and array_item so that other uses of these besides ↵Travis Oliphant2005-10-261-20/+33
| | | | the sequence protocol work for 64-bit systems.
* Cosmetic fixes.Travis Oliphant2005-10-261-1/+1
|
* Added more types to weave.Travis Oliphant2005-10-261-0/+15
|
* Fix segfault with Character arrays.Travis Oliphant2005-10-261-3/+6
|
* Fix toscalar so it only works when a.size == 1Travis Oliphant2005-10-261-1/+7
|
* Fixed default typecode on copy.Travis Oliphant2005-10-251-1/+1
|
* Fixed docstring (line-break problem)edschofield2005-10-251-11/+11
|
* Cleaned up exceptions:edschofield2005-10-255-149/+149
| | | | | | * improved consistency in exception strings; removed typos * changed some ValueError exceptions to TypeError
* More fixes to remove allowing numbers for types.Travis Oliphant2005-10-222-12/+16
|
* Removed allowing numbers for typecodes.Travis Oliphant2005-10-223-37/+22
|
* EJS: disabled the stricter type checking on boolean values for now, until I'veedschofield2005-10-221-2/+4
| | | | | tested this with the full scipy
* EJS: Patch to use proper True and False values rather than 1 and 0. This ↵edschofield2005-10-221-4/+14
| | | | | | | | | | | | allows stricter type checking when we expect a boolean value to prevent the user shooting himself in the foot. Example: >>> a = zeros(1,2,3) used to succeed, creating an array of shape (1,), dtype 2, and fortran=True, which was probably not intended. It now raises a TypeError. [The user probably wants something else, like zeros((1,2,3)).]
* Fixed bug in CDOUBLE_setitemTravis Oliphant2005-10-221-2/+3
|
* Remove useless size change.Travis Oliphant2005-10-211-5/+3
|
* Fixed memory alignment issue in frompyfuncTravis Oliphant2005-10-211-9/+26
|
* Added a new test for isinf.Travis Oliphant2005-10-212-11/+22
|
* Fixed up array interfaceTravis Oliphant2005-10-212-17/+35
|
* Make sure errorobj is NULL.Travis Oliphant2005-10-201-0/+1
|
* Applied Ted Horst's patches.Travis Oliphant2005-10-202-5/+5
|
* Added .fill method.Travis Oliphant2005-10-203-3/+77
|
* Changed lookup to a single list.Travis Oliphant2005-10-202-102/+71
|
* Silly error in _ScalarAsCtype.Travis Oliphant2005-10-201-1/+1
|
* Transpose fixes --- flags needed fixing before calling copy_ND_array.Travis Oliphant2005-10-202-2/+4
|
* Changed default rtype for Bool and low-bit integersTravis Oliphant2005-10-191-3/+18
|
* Fix flags and don't set mem to 0 in FromDimsAndDataTravis Oliphant2005-10-191-9/+4
|
* Allow array scalars in f2py conversions.Travis Oliphant2005-10-191-0/+23
|
* Generalized newshape for adding and removing ones.Travis Oliphant2005-10-182-34/+17
|
* Fixed so that setting shape works even for discontiguous arrays as long as ↵Travis Oliphant2005-10-182-41/+108
| | | | only inserting or deleting unit length dimensions is involved. This fixes problem with selecting from matrix.
* removed % from FMT stringTravis Oliphant2005-10-151-2/+2
|
* Fixed __array_data__ interface.Travis Oliphant2005-10-142-9/+34
|
* Removed mapiter from Python exposure.Travis Oliphant2005-10-142-10/+23
|
* Fixes made necessary by change to asarray.Travis Oliphant2005-10-143-27/+40
|
* Fixed subclass PyArray_New error segfault. Updated f2py for newscipy (a little)Travis Oliphant2005-10-141-10/+9
|
* Fixed can cast safely.Travis Oliphant2005-10-131-34/+16
|
* Fixed so that array always returns an array object.Travis Oliphant2005-10-133-22/+105
|
* Added more doc-strings.Travis Oliphant2005-10-121-7/+25
|
* change floor precision of small-bit integersTravis Oliphant2005-10-121-2/+4
|
* Fixed remainder to behaved like Python.Travis Oliphant2005-10-124-20/+60
|
* Fix buglet in set_numeric_opsTravis Oliphant2005-10-121-10/+11
|
* Moved back to 0.4.2Travis Oliphant2005-10-121-17/+91
|