OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
lib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
__init__.py
1.79 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
__pycache__
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
_datasource.py
22.26 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_iotools.py
30.19 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
_version.py
4.74 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
arraypad.py
30.59 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
arraysetops.py
24.32 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
arrayterator.py
6.9 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
financial.py
30.78 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
format.py
30.33 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
function_base.py
151.66 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
histograms.py
39.19 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
index_tricks.py
28.95 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
mixins.py
6.88 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
nanfunctions.py
57.51 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
npyio.py
85.5 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
polynomial.py
39.73 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
recfunctions.py
55.2 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
scimath.py
14.38 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
setup.py
370 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
shape_base.py
37.46 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
stride_tricks.py
8.81 KB
10/28/2024 05:59:24 AM
rw-r--r--
📁
tests
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
twodim_base.py
26.91 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
type_check.py
19.3 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
ufunclike.py
7.76 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
user_array.py
7.54 KB
10/28/2024 05:59:24 AM
rw-r--r--
📄
utils.py
31.83 KB
10/28/2024 05:59:24 AM
rw-r--r--
Editing: __init__.py
Close
""" **Note:** almost all functions in the ``numpy.lib`` namespace are also present in the main ``numpy`` namespace. Please use the functions as ``np.<funcname>`` where possible. ``numpy.lib`` is mostly a space for implementing functions that don't belong in core or in another NumPy submodule with a clear purpose (e.g. ``random``, ``fft``, ``linalg``, ``ma``). Most contains basic functions that are used by several submodules and are useful to have in the main name-space. """ import math from numpy.version import version as __version__ # Public submodules # Note: recfunctions and (maybe) format are public too, but not imported from . import mixins from . import scimath as emath # Private submodules from .type_check import * from .index_tricks import * from .function_base import * from .nanfunctions import * from .shape_base import * from .stride_tricks import * from .twodim_base import * from .ufunclike import * from .histograms import * from .polynomial import * from .utils import * from .arraysetops import * from .npyio import * from .financial import * from .arrayterator import Arrayterator from .arraypad import * from ._version import * from numpy.core._multiarray_umath import tracemalloc_domain __all__ = ['emath', 'math', 'tracemalloc_domain', 'Arrayterator'] __all__ += type_check.__all__ __all__ += index_tricks.__all__ __all__ += function_base.__all__ __all__ += shape_base.__all__ __all__ += stride_tricks.__all__ __all__ += twodim_base.__all__ __all__ += ufunclike.__all__ __all__ += arraypad.__all__ __all__ += polynomial.__all__ __all__ += utils.__all__ __all__ += arraysetops.__all__ __all__ += npyio.__all__ __all__ += financial.__all__ __all__ += nanfunctions.__all__ __all__ += histograms.__all__ from numpy._pytesttester import PytestTester test = PytestTester(__name__) del PytestTester