PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
from typing import ( Literal as L, overload, Any, SupportsIndex, TypeVar, ) from numpy import floating, complexfloating, generic from numpy._typing import ( NDArray, DTypeLike, _DTypeLike, _ArrayLikeFloat_co, _ArrayLikeComplex_co, ) _SCT = TypeVar("_SCT", bound=generic) __all__: list[str] @overload def linspace( start: _ArrayLikeFloat_co, stop: _ArrayLikeFloat_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[False] = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[floating[Any]]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[False] = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[complexfloating[Any, Any]]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[False] = ..., dtype: _DTypeLike[_SCT] = ..., axis: SupportsIndex = ..., ) -> NDArray[_SCT]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[False] = ..., dtype: DTypeLike = ..., axis: SupportsIndex = ..., ) -> NDArray[Any]: ... @overload def linspace( start: _ArrayLikeFloat_co, stop: _ArrayLikeFloat_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[True] = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> tuple[NDArray[floating[Any]], floating[Any]]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[True] = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> tuple[NDArray[complexfloating[Any, Any]], complexfloating[Any, Any]]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[True] = ..., dtype: _DTypeLike[_SCT] = ..., axis: SupportsIndex = ..., ) -> tuple[NDArray[_SCT], _SCT]: ... @overload def linspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., retstep: L[True] = ..., dtype: DTypeLike = ..., axis: SupportsIndex = ..., ) -> tuple[NDArray[Any], Any]: ... @overload def logspace( start: _ArrayLikeFloat_co, stop: _ArrayLikeFloat_co, num: SupportsIndex = ..., endpoint: bool = ..., base: _ArrayLikeFloat_co = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[floating[Any]]: ... @overload def logspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., base: _ArrayLikeComplex_co = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[complexfloating[Any, Any]]: ... @overload def logspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., base: _ArrayLikeComplex_co = ..., dtype: _DTypeLike[_SCT] = ..., axis: SupportsIndex = ..., ) -> NDArray[_SCT]: ... @overload def logspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., base: _ArrayLikeComplex_co = ..., dtype: DTypeLike = ..., axis: SupportsIndex = ..., ) -> NDArray[Any]: ... @overload def geomspace( start: _ArrayLikeFloat_co, stop: _ArrayLikeFloat_co, num: SupportsIndex = ..., endpoint: bool = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[floating[Any]]: ... @overload def geomspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., dtype: None = ..., axis: SupportsIndex = ..., ) -> NDArray[complexfloating[Any, Any]]: ... @overload def geomspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., dtype: _DTypeLike[_SCT] = ..., axis: SupportsIndex = ..., ) -> NDArray[_SCT]: ... @overload def geomspace( start: _ArrayLikeComplex_co, stop: _ArrayLikeComplex_co, num: SupportsIndex = ..., endpoint: bool = ..., dtype: DTypeLike = ..., axis: SupportsIndex = ..., ) -> NDArray[Any]: ... # Re-exported to `np.lib.function_base` def add_newdoc( place: str, obj: str, doc: str | tuple[str, str] | list[tuple[str, str]], warn_on_python: bool = ..., ) -> None: ...
[-] _string_helpers.py
[open]
[+]
..
[-] numerictypes.pyi
[open]
[-] _type_aliases.py
[open]
[-] multiarray.py
[open]
[-] _asarray.py
[open]
[-] arrayprint.py
[open]
[+]
__pycache__
[+]
tests
[-] _add_newdocs_scalars.py
[open]
[-] setup_common.py
[open]
[-] memmap.pyi
[open]
[-] fromnumeric.py
[open]
[-] overrides.py
[open]
[-] _machar.py
[open]
[-] _operand_flag_tests.cpython-311-x86_64-linux-gnu.so
[open]
[-] _methods.py
[open]
[-] _add_newdocs.py
[open]
[-] _asarray.pyi
[open]
[-] einsumfunc.py
[open]
[-] defchararray.pyi
[open]
[-] getlimits.py
[open]
[-] generate_numpy_api.py
[open]
[-] _ufunc_config.pyi
[open]
[-] shape_base.py
[open]
[-] _dtype_ctypes.py
[open]
[-] numerictypes.py
[open]
[-] memmap.py
[open]
[-] _rational_tests.cpython-311-x86_64-linux-gnu.so
[open]
[-] einsumfunc.pyi
[open]
[-] _internal.pyi
[open]
[-] __init__.pyi
[open]
[-] records.pyi
[open]
[-] _multiarray_tests.cpython-311-x86_64-linux-gnu.so
[open]
[-] _multiarray_umath.cpython-311-x86_64-linux-gnu.so
[open]
[-] _umath_tests.cpython-311-x86_64-linux-gnu.so
[open]
[-] _type_aliases.pyi
[open]
[-] _simd.cpython-311-x86_64-linux-gnu.so
[open]
[-] umath_tests.py
[open]
[-] _internal.py
[open]
[-] fromnumeric.pyi
[open]
[-] function_base.pyi
[open]
[-] numeric.pyi
[open]
[-] defchararray.py
[open]
[-] numeric.py
[open]
[+]
lib
[-] function_base.py
[open]
[-] multiarray.pyi
[open]
[-] _struct_ufunc_tests.cpython-311-x86_64-linux-gnu.so
[open]
[-] __init__.py
[open]
[-] _exceptions.py
[open]
[-] umath.py
[open]
[-] setup.py
[open]
[-] _dtype.py
[open]
[+]
include
[-] arrayprint.pyi
[open]
[-] getlimits.pyi
[open]
[-] _ufunc_config.py
[open]
[-] cversions.py
[open]
[-] shape_base.pyi
[open]
[-] records.py
[open]