summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* Move documentation outside of source tree. Remove `doc` import from __init__.Stefan van der Walt2008-08-23103-15033/+23
|
* Trial fix to ticket #698Travis Oliphant2008-08-232-1/+42
|
* BUG: reinitialize_command(**kwds) is a setuptools override of the distutils ↵Robert Kern2008-08-231-1/+2
| | | | API. Set the attribute directly, instead.
* BUG: Allow floating point argument n to negative binomial distribution.Robert Kern2008-08-235-3213/+3812
|
* Remove unused variable.Stefan van der Walt2008-08-221-3/+0
|
* reverting C-API change from r5626Jarrod Millman2008-08-223-18/+17
|
* Add Guide to NumPy to numpy svn.Travis Oliphant2008-08-2151-0/+80114
|
* Update `random` docstring.Stefan van der Walt2008-08-211-3/+82
|
* Run scons command in build_ext instead of build.David Cournapeau2008-08-202-3/+5
| | | | | | | setuptools develop run build_ext inplace, not build, so develop command in setuptools would not call the scons command. Now, the develop mode should work with numscons.
* Update fenv.h for cygwin: all asm calls should be tagged as volatile.David Cournapeau2008-08-201-3/+3
|
* Add a note on scimath.sqrt for the definition of square root as the ↵David Cournapeau2008-08-201-0/+16
| | | | principal square root.
* Add note telling users to add new functions to the end of the list.Charles Harris2008-08-191-1/+4
|
* Move generalised ufunc functionality to the gen_ufuncs branch.Stefan van der Walt2008-08-154-509/+14
|
* Re-factor code to remove dependency of numpy.core on numpy.lib by moving ↵Travis Oliphant2008-08-153-44/+46
| | | | issubclass_, issubsctype, and issubdtype to numpy.core.numerictypes
* Split generated docstring literals for compilers which cannot handle long ↵David Cournapeau2008-08-151-0/+4
| | | | strings.z
* Fix warnings in ufunc code [patch by Wenjie Fu].Stefan van der Walt2008-08-141-3/+3
|
* Whitespace cleanup. Move definition of variable to beginning of function.Stefan van der Walt2008-08-141-10/+11
|
* Move declaration to appease some compilers [patch by Hans-Andreas Engel].Stefan van der Walt2008-08-141-32/+38
|
* Do not setup any compiler in scons command if noscons scripts are used.David Cournapeau2008-08-141-53/+58
|
* Bump NPY_VERSION for ufunc patch.Stefan van der Walt2008-08-141-1/+1
|
* Framework for generalised ufuncs [patch by Wenjie Fu and Hans-Andreas Engel].Stefan van der Walt2008-08-143-13/+501
|
* Remove C99 test cases; they are not guaranteed to succeed on all plaftorms, ↵Pauli Virtanen2008-08-131-138/+0
| | | | so it's better to reintroduce them only after the inf/nan handling has been addressed.
* Do not special-case for mingw32: compiler detection takes care of that now.David Cournapeau2008-08-131-2/+0
|
* Unique1d will now return unique as well as reverse indices. Fix order ofStefan van der Walt2008-08-132-12/+53
| | | | returns [patch by Robert Cimrman].
* Disable memmap test on windows because it crashes the testsuite. This has to ↵David Cournapeau2008-08-131-31/+34
| | | | be fixed before a rc of numpy 1.2.0, though (see#827).
* Add Roberto de Almeida's Arrayterator.Stefan van der Walt2008-08-133-0/+190
|
* BUG: F distributions need the appropriate scale factor.Robert Kern2008-08-121-1/+2
|
* * masked_where : force a consistency check on the shapes of the inputspierregm2008-08-122-0/+16
|
* Correctly handle Fortran-contiguous arrays in SWIG wrappers.Stefan van der Walt2008-08-1211-27/+324
|
* More consistent nan-operations.Stefan van der Walt2008-08-122-20/+38
|
* Tweak error msg when python.h not compilable with scons.David Cournapeau2008-08-101-3/+5
|
* Depends on numscons >= 0.9.1.David Cournapeau2008-08-101-1/+1
|
* Fix ticket #674.Travis Oliphant2008-08-102-2/+14
|
* *Full recompile needed*: changed the name of hasobject structure member to ↵Travis Oliphant2008-08-103-17/+18
| | | | flags in the PyArray_Descr structure and increased it's size to int
* Give better error message when testing python.h fails.David Cournapeau2008-08-091-5/+9
|
* Improve error message when scons command fails.David Cournapeau2008-08-091-6/+8
|
* breaking API for medianJarrod Millman2008-08-081-12/+9
|
* ran reindentJarrod Millman2008-08-0850-248/+228
|
* Remove piece-by-piece docstring assembly; the full texts were inserted in ↵Pauli Virtanen2008-08-081-79/+0
| | | | the docstrings in r5610
* Fix bad string escaping in mtrand.pyx docstrings (+ regenerate mtrand.c)Pauli Virtanen2008-08-072-761/+727
|
* * core : minor doc formattingpierregm2008-08-072-79/+81
| | | | * test_extras: switched to assert_almost_equal in TestCov and TestCorrcoef
* corepierregm2008-08-073-61/+151
| | | | | | | * use self.__name__ for private method instances extras * fixed corrcoef * introduced diagflat
* Fix ticket #877 along with other bugs not yet reported for data-types with ↵Travis Oliphant2008-08-064-5/+30
| | | | titles.
* * MaskedArray.__new__: prevents self._optinfo to be overwritten (it's ↵pierregm2008-08-061-2/+0
| | | | defined w/ the call to .view)
* Always define __STDC_FORMAT_MACROS for C++ support of PRIdPTR.David Cournapeau2008-08-062-0/+13
|
* * added cov and corrcoef to ma.extras for compatibilitypierregm2008-08-052-16/+207
|
* added comment in histogram warning.dhuard2008-08-051-0/+2
|
* Follow-up on changes to histogram semantics.dhuard2008-08-053-61/+87
| | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning.
* Merge from documentation editor.Stefan van der Walt2008-08-0546-6482/+16388
|
* Fix NPY_INTP_FMT when C99 format available (typo + forgot to include ↵David Cournapeau2008-08-051-1/+4
| | | | inttypes.h),