Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
numpy /
Delete
Unzip
Name
Size
Permission
Date
Action
compat
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
core
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
distutils
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
doc
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
fft
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
lib
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
linalg
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
ma
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
matrixlib
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
numarray
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
oldnumeric
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
polynomial
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
random
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
testing
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
tests
[ DIR ]
drwxr-xr-x
2021-09-16 10:54
__config__.py
1.55
KB
-rw-r--r--
2018-04-10 19:40
__config__.pyc
1.67
KB
-rw-r--r--
2018-04-10 19:40
__config__.pyo
1.67
KB
-rw-r--r--
2018-04-10 19:40
__init__.py
5.12
KB
-rw-r--r--
2013-04-07 01:04
__init__.pyc
5.27
KB
-rw-r--r--
2018-04-10 19:40
__init__.pyo
5.27
KB
-rw-r--r--
2018-04-10 19:40
_import_tools.py
12.59
KB
-rw-r--r--
2013-04-07 01:04
_import_tools.pyc
10.84
KB
-rw-r--r--
2018-04-10 19:40
_import_tools.pyo
10.84
KB
-rw-r--r--
2018-04-10 19:40
add_newdocs.py
206.73
KB
-rw-r--r--
2013-04-07 01:04
add_newdocs.pyc
266.8
KB
-rw-r--r--
2018-04-10 19:40
add_newdocs.pyo
266.8
KB
-rw-r--r--
2018-04-10 19:40
ctypeslib.py
13.55
KB
-rw-r--r--
2013-04-07 01:04
ctypeslib.pyc
12.86
KB
-rw-r--r--
2018-04-10 19:40
ctypeslib.pyo
12.86
KB
-rw-r--r--
2018-04-10 19:40
dual.py
1.74
KB
-rw-r--r--
2013-04-07 01:04
dual.pyc
2.12
KB
-rw-r--r--
2018-04-10 19:40
dual.pyo
2.12
KB
-rw-r--r--
2018-04-10 19:40
matlib.py
9.27
KB
-rw-r--r--
2013-04-07 01:04
matlib.pyc
10.37
KB
-rw-r--r--
2018-04-10 19:40
matlib.pyo
10.37
KB
-rw-r--r--
2018-04-10 19:40
setup.py
946
B
-rw-r--r--
2013-04-07 01:04
setup.pyc
1.03
KB
-rw-r--r--
2018-04-10 19:40
setup.pyo
1.03
KB
-rw-r--r--
2018-04-10 19:40
setupscons.py
1.45
KB
-rw-r--r--
2013-04-07 01:04
setupscons.pyc
1.59
KB
-rw-r--r--
2018-04-10 19:40
setupscons.pyo
1.59
KB
-rw-r--r--
2018-04-10 19:40
version.py
228
B
-rw-r--r--
2018-04-10 19:40
version.pyc
335
B
-rw-r--r--
2018-04-10 19:40
version.pyo
335
B
-rw-r--r--
2018-04-10 19:40
Save
Rename
""" Aliases for functions which may be accelerated by Scipy. Scipy_ can be built to use accelerated or otherwise improved libraries for FFTs, linear algebra, and special functions. This module allows developers to transparently support these accelerated functions when scipy is available but still support users who have only installed Numpy. .. _Scipy : http://www.scipy.org """ # This module should be used for functions both in numpy and scipy if # you want to use the numpy version if available but the scipy version # otherwise. # Usage --- from numpy.dual import fft, inv __all__ = ['fft','ifft','fftn','ifftn','fft2','ifft2', 'norm','inv','svd','solve','det','eig','eigvals', 'eigh','eigvalsh','lstsq', 'pinv','cholesky','i0'] import numpy.linalg as linpkg import numpy.fft as fftpkg from numpy.lib import i0 import sys fft = fftpkg.fft ifft = fftpkg.ifft fftn = fftpkg.fftn ifftn = fftpkg.ifftn fft2 = fftpkg.fft2 ifft2 = fftpkg.ifft2 norm = linpkg.norm inv = linpkg.inv svd = linpkg.svd solve = linpkg.solve det = linpkg.det eig = linpkg.eig eigvals = linpkg.eigvals eigh = linpkg.eigh eigvalsh = linpkg.eigvalsh lstsq = linpkg.lstsq pinv = linpkg.pinv cholesky = linpkg.cholesky _restore_dict = {} def register_func(name, func): if name not in __all__: raise ValueError("%s not a dual function." % name) f = sys._getframe(0).f_globals _restore_dict[name] = f[name] f[name] = func def restore_func(name): if name not in __all__: raise ValueError("%s not a dual function." % name) try: val = _restore_dict[name] except KeyError: return else: sys._getframe(0).f_globals[name] = val def restore_all(): for name in _restore_dict.keys(): restore_func(name)