summaryrefslogtreecommitdiff
path: root/numpy/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Make top numpy __init__ importable from python3.David Cournapeau2009-12-031-2/+2
|
* Add support for chebyshev series and polynomials.Charles Harris2009-11-141-0/+3
| | | | | | | | | | | | | | | | New modules chebyshev and polynomial are added. The new polynomial module is not compatible with the current polynomial support in numpy, but is much like the new chebyshev module. The most noticeable difference to most will be that coefficients are specified from low to high power, that the low level functions do *not* accept the Chebyshev and Polynomial classes as arguements, and that the Chebyshev and Polynomial classes include a domain. Mapping between domains is a linear substitution and the two classes can be converted one to the other, allowing, for instance, a Chebyshev series in one domain to be expanded as a polynomial in another domain. The new modules are not automatically imported into the numpy namespace, they must be explicitly brought in with a "import numpy.polynomial" statement.
* ENH: move inspect copy into newly created compat module.David Cournapeau2009-10-131-0/+1
|
* Final doc import cleanups. Thanks to all contributors for the preceding commits!Pauli Virtanen2009-10-021-1/+1
| | | | | There are still some docstrings in the queue -- those'll be committed in later.
* Rename matrx to matrixlib.David Cournapeau2009-09-181-2/+2
| | | | | I forgot to commit the name change suggested by Stefan. You need to clean build/install directory when updating to this version.
* Move matrix class into its own module.David Cournapeau2009-09-161-0/+3
|
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-7/+12
| | | | they are still an improvement)
* Move documentation outside of source tree. Remove `doc` import from __init__.Stefan van der Walt2008-08-231-19/+11
|
* ran reindentJarrod Millman2008-08-081-1/+0
|
* Merge from documentation editor.Stefan van der Walt2008-08-051-9/+48
|
* Add numpy.doc topical documentation framework.Stefan van der Walt2008-07-091-1/+2
|
* Restore old test framework classes.Alan McIntyre2008-06-211-1/+1
| | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc.
* Add `ma` to __all__.Stefan van der Walt2008-06-181-1/+1
|
* Switched to use nose to run tests. Added test and bench functions to all ↵Alan McIntyre2008-06-171-10/+6
| | | | modules.
* fixed whitespace w/ reindentJarrod Millman2008-05-221-1/+0
|
* Don't assemble numpy module docstring from several parts; removes duplicationPauli Virtanen2008-05-141-40/+0
|
* Merge docstrings from wiki.Stefan van der Walt2008-05-141-6/+57
|
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-1/+1
|
* Add docs and examples for financial functions.Travis Oliphant2008-04-081-1/+1
|
* Put a more meaningful message when importing numpy from its source tree.David Cournapeau2008-03-131-1/+7
|
* Alter NumPy docstring to remove ad and give a litte more info.Travis Oliphant2008-02-291-10/+5
|
* Import add_newdocs earlier, so maskedarray can extend the addedStefan van der Walt2008-01-231-9/+8
| | | | documentation.
* Merge maskedarray branch up to r4729.Stefan van der Walt2008-01-181-10/+15
|\
| * Modify the setup routine to indicate that it is being run via a systemFernando Perez2007-12-301-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | global. This allows the main __init__ to detect the setup and avoid attempting to load things that aren't built yet. This is hackish, but the previously used method would fail if there was an existing system-wide numpy already installed, for example (which users might have no control over). There were frequent reports of problems with the previous method: - http://projects.scipy.org/pipermail/scipy-user/2007-November/014511.html - Tickets #561 and #565
| * Improve docstringsTravis Oliphant2007-12-281-5/+6
| |
| * Don't add test to numpy.__all__: it's not something that needs to be exportedcookedm2007-12-241-1/+1
| |
* | Move ma to numpy root. Fix unit tests. Remove references to numpy.core.ma.Stefan van der Walt2007-12-151-0/+1
|/
* Make sure we import numpy's configuration. Closes ticket #565.Stefan van der Walt2007-08-071-1/+1
|
* Print install location, numpy version, and python verstion in numpy.test()cookedm2007-06-171-0/+4
|
* NumpyTest.test() takes an extra argument, all, which, if true, makescookedm2007-04-221-5/+2
| | | | | it act like NumpyTest.testall(). This comes from some refactoring to remove duplicate code in .test and .testall().
* Add new MACRO. Fix ticket #454 by changing pkgload to a function instead of ↵Travis Oliphant2007-03-311-1/+4
| | | | an object.
* Whitespace cleanup.Stefan van der Walt2007-01-081-6/+6
|
* Refer to NumpyTest instead of ScipyTest.Stefan van der Walt2007-01-081-2/+2
|
* Remove sorted from unique1d. Add testall to test if level > 10. Remove ↵Travis Oliphant2006-09-201-1/+4
| | | | compiler warning.
* Fix rounding of integers with decimal < 0Travis Oliphant2006-09-041-4/+5
|
* Fix problem with randn in matlib. Acutally add min, max, round, abs to the ↵Travis Oliphant2006-08-291-4/+6
| | | | numpy name-space without over-writing builtins on from numpy import *
* Add float, int, etc. to numpy name-space. Flesh out tensordot. Fix-up ↵Travis Oliphant2006-08-291-0/+4
| | | | getcharbuf to allow all 8-bit types to be returned as a charbuf.
* import ctypeslib on numpy load and change name from ctypes_load_library to ↵Travis Oliphant2006-08-151-1/+2
| | | | load_library
* Many name-changes in oldnumeric. This may break some numpy code that was ↵Travis Oliphant2006-08-041-3/+3
| | | | using the oldnumeric interface.
* Add explicit imports patch in #193Travis Oliphant2006-07-201-16/+44
|
* Don't want to assign test to NumpyTest().test (which instantiates NumpyTest),Stefan van der Walt2006-07-071-0/+1
| | | | so rather bring over its docstring.
* Check-in name-space changes so that numpy.oldnumeric is the compatibility ↵Travis Oliphant2006-06-121-2/+2
| | | | module and numpy does not contain all of the names.
* Remove numpy distutils from autoload and fix 64-bit bug.Travis Oliphant2006-03-131-1/+0
|
* Fix so that -OO worksTravis Oliphant2006-03-061-3/+6
|
* Clean up.Pearu Peterson2006-02-241-1/+1
|
* Added more debugging hooks to PackageLoader: NUMPY_IMPORT_DEBUG. Avoid ↵Pearu Peterson2006-02-241-2/+5
| | | | initiating Scipy/NumpyTest during imports.
* numpy no longer needs to be a namespace package.Robert Kern2006-01-191-6/+0
|
* Load numpy.linalg on importTravis Oliphant2006-01-161-1/+1
|
* Making f2py and distutils scipy-style packages. Using pkgload to load numpy ↵Pearu Peterson2006-01-141-33/+31
| | | | packages.
* Fixing scipy.lib and numpy.lib names conflict.Pearu Peterson2006-01-081-2/+0
|