Server IP : 192.64.118.117 / Your IP : 3.128.31.200 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/venv/lib64/python3.11/site-packages/numpy/lib/ |
Upload File : |
from typing import Any, overload, TypeVar from numpy import floating, bool_, object_, ndarray from numpy._typing import ( NDArray, _FloatLike_co, _ArrayLikeFloat_co, _ArrayLikeObject_co, ) _ArrayType = TypeVar("_ArrayType", bound=ndarray[Any, Any]) __all__: list[str] @overload def fix( # type: ignore[misc] x: _FloatLike_co, out: None = ..., ) -> floating[Any]: ... @overload def fix( x: _ArrayLikeFloat_co, out: None = ..., ) -> NDArray[floating[Any]]: ... @overload def fix( x: _ArrayLikeObject_co, out: None = ..., ) -> NDArray[object_]: ... @overload def fix( x: _ArrayLikeFloat_co | _ArrayLikeObject_co, out: _ArrayType, ) -> _ArrayType: ... @overload def isposinf( # type: ignore[misc] x: _FloatLike_co, out: None = ..., ) -> bool_: ... @overload def isposinf( x: _ArrayLikeFloat_co, out: None = ..., ) -> NDArray[bool_]: ... @overload def isposinf( x: _ArrayLikeFloat_co, out: _ArrayType, ) -> _ArrayType: ... @overload def isneginf( # type: ignore[misc] x: _FloatLike_co, out: None = ..., ) -> bool_: ... @overload def isneginf( x: _ArrayLikeFloat_co, out: None = ..., ) -> NDArray[bool_]: ... @overload def isneginf( x: _ArrayLikeFloat_co, out: _ArrayType, ) -> _ArrayType: ...