1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
"""
NumPy
=====
Provides
1. An array object of arbitrary homogeneous items
2. Fast mathematical operations over arrays
3. Linear Algebra, Fourier Transforms, Random Number Generation
Documentation is available in the docstrings and at http://www.scipy.org
Available subpackages
---------------------
core
Defines a multi-dimensional array and useful procedures
for Numerical computation.
lib
Basic functions used by several sub-packages and useful
to have in the main name-space.
random
Core Random Tools
linalg
Core Linear Algebra Tools
fft
Core FFT routines
testing
Numpy testing tools
The following sub-packages must be explicitly imported:
f2py
Fortran to Python Interface Generator.
distutils
Enhancements to distutils with support for
Fortran compilers support and more.
Global symbols from subpackages
-------------------------------
======== =================================
core all (use numpy.* not numpy.core.*)
lib all (use numpy.* not numpy.lib.*)
testing NumpyTest
======== =================================
Utility tools
-------------
test
Run numpy unittests
pkgload
Load numpy packages
show_config
Show numpy build configuration
dual
Overwrite certain functions with high-performance Scipy tools
matlib
Make everything matrices.
__version__
Numpy version string
"""
# We first need to detect if we're being called as part of the numpy setup
# procedure itself in a reliable manner.
try:
__NUMPY_SETUP__
except NameError:
__NUMPY_SETUP__ = False
if __NUMPY_SETUP__:
import sys as _sys
print >> _sys.stderr, 'Running from numpy source directory.'
del _sys
else:
try:
from numpy.__config__ import show as show_config
except ImportError, e:
msg = """Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python intepreter from there."""
raise ImportError(msg)
from version import version as __version__
from _import_tools import PackageLoader
def pkgload(*packages, **options):
loader = PackageLoader(infunc=True)
return loader(*packages, **options)
import add_newdocs
__all__ = ['add_newdocs']
pkgload.__doc__ = PackageLoader.__call__.__doc__
import testing
from testing import ScipyTest, NumpyTest
import core
from core import *
import lib
from lib import *
import linalg
import fft
import random
import ctypeslib
import ma
# Make these accessible from numpy name-space
# but not imported in from numpy import *
from __builtin__ import bool, int, long, float, complex, \
object, unicode, str
from core import round, abs, max, min
__all__.extend(['__version__', 'pkgload', 'PackageLoader',
'ScipyTest', 'NumpyTest', 'show_config'])
__all__.extend(core.__all__)
__all__.extend(lib.__all__)
__all__.extend(['linalg', 'fft', 'random', 'ctypeslib'])
if __doc__ is not None:
__doc__ += """
Available subpackages
---------------------
core --- Defines a multi-dimensional array and useful procedures
for Numerical computation.
lib --- Basic functions used by several sub-packages and useful
to have in the main name-space.
random --- Core Random Tools
linalg --- Core Linear Algebra Tools
fft --- Core FFT routines
testing --- Numpy testing tools
These packages require explicit import
f2py --- Fortran to Python Interface Generator.
distutils --- Enhancements to distutils with support for
Fortran compilers support and more.
Global symbols from subpackages
-------------------------------
core --> * (use numpy.* not numpy.core.*)
lib --> * (use numpy.* not numpy.lib.*)
testing --> NumpyTest
"""
def test(*args, **kw):
import os, sys
print 'Numpy is installed in %s' % (os.path.split(__file__)[0],)
print 'Numpy version %s' % (__version__,)
print 'Python version %s' % (sys.version.replace('\n', '',),)
return NumpyTest().test(*args, **kw)
test.__doc__ = NumpyTest.test.__doc__
if __doc__ is not None:
__doc__ += """
Utility tools
-------------
test --- Run numpy unittests
pkgload --- Load numpy packages
show_config --- Show numpy build configuration
dual --- Overwrite certain functions with high-performance Scipy tools
matlib --- Make everything matrices.
__version__ --- Numpy version string
"""
|