/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
numpy
/
lib
/
/opt/imh-python/lib/python3.9/site-packages/numpy/lib
mkdir
upload
Name
Size
Mode
Actions
tests/
-
0755
rm
__pycache__/
-
0755
rm
arraypad.py
31803
0644
edit
dl
rm
arraypad.pyi
1728
0644
edit
dl
rm
arraysetops.py
33655
0644
edit
dl
rm
arraysetops.pyi
8372
0644
edit
dl
rm
arrayterator.py
7063
0644
edit
dl
rm
arrayterator.pyi
1537
0644
edit
dl
rm
format.py
34769
0644
edit
dl
rm
format.pyi
748
0644
edit
dl
rm
function_base.py
189103
0644
edit
dl
rm
function_base.pyi
16585
0644
edit
dl
rm
histograms.py
37778
0644
edit
dl
rm
histograms.pyi
995
0644
edit
dl
rm
index_tricks.py
31346
0644
edit
dl
rm
index_tricks.pyi
4251
0644
edit
dl
rm
mixins.py
7071
0644
edit
dl
rm
mixins.pyi
3117
0644
edit
dl
rm
nanfunctions.py
65775
0644
edit
dl
rm
nanfunctions.pyi
606
0644
edit
dl
rm
npyio.py
97316
0644
edit
dl
rm
npyio.pyi
9728
0644
edit
dl
rm
polynomial.py
44133
0644
edit
dl
rm
polynomial.pyi
6958
0644
edit
dl
rm
recfunctions.py
59423
0644
edit
dl
rm
scimath.py
15037
0644
edit
dl
rm
scimath.pyi
2883
0644
edit
dl
rm
setup.py
405
0644
edit
dl
rm
shape_base.py
38947
0644
edit
dl
rm
shape_base.pyi
5341
0644
edit
dl
rm
stride_tricks.py
17911
0644
edit
dl
rm
stride_tricks.pyi
1747
0644
edit
dl
rm
twodim_base.py
32947
0644
edit
dl
rm
twodim_base.pyi
5370
0644
edit
dl
rm
type_check.py
19954
0644
edit
dl
rm
type_check.pyi
5571
0644
edit
dl
rm
ufunclike.py
6325
0644
edit
dl
rm
ufunclike.pyi
1293
0644
edit
dl
rm
user_array.py
7721
0644
edit
dl
rm
utils.py
37804
0644
edit
dl
rm
utils.pyi
2360
0644
edit
dl
rm
_datasource.py
22631
0644
edit
dl
rm
_iotools.py
30868
0644
edit
dl
rm
_version.py
4855
0644
edit
dl
rm
_version.pyi
633
0644
edit
dl
rm
__init__.py
2713
0644
edit
dl
rm
__init__.pyi
5596
0644
edit
dl
rm
Edit:
/opt/imh-python/lib/python3.9/site-packages/numpy/lib/__init__.py
(2713B)
""" **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. """ # Public submodules # Note: recfunctions and (maybe) format are public too, but not imported from . import mixins from . import scimath as emath # Private submodules # load module names. See https://github.com/networkx/networkx/issues/5838 from . import type_check from . import index_tricks from . import function_base from . import nanfunctions from . import shape_base from . import stride_tricks from . import twodim_base from . import ufunclike from . import histograms from . import polynomial from . import utils from . import arraysetops from . import npyio from . import arrayterator from . import arraypad from . import _version 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 .arrayterator import Arrayterator from .arraypad import * from ._version import * from numpy.core._multiarray_umath import tracemalloc_domain __all__ = ['emath', '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__ += nanfunctions.__all__ __all__ += histograms.__all__ from numpy._pytesttester import PytestTester test = PytestTester(__name__) del PytestTester def __getattr__(attr): # Warn for reprecated attributes import math import warnings if attr == 'math': warnings.warn( "`np.lib.math` is a deprecated alias for the standard library " "`math` module (Deprecated Numpy 1.25). Replace usages of " "`numpy.lib.math` with `math`", DeprecationWarning, stacklevel=2) return math else: raise AttributeError("module {!r} has no attribute " "{!r}".format(__name__, attr))
Save
cmd:
run