| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/typing/tests/data/reveal/ |
Upload File : |
from typing import Any import numpy as np import numpy.typing as npt from typing_extensions import assert_type AR_f8: npt.NDArray[np.float64] AR_c16: npt.NDArray[np.complex128] f8: np.float64 c16: np.complex128 assert_type(np.emath.sqrt(f8), Any) assert_type(np.emath.sqrt(AR_f8), npt.NDArray[Any]) assert_type(np.emath.sqrt(c16), np.complexfloating[Any, Any]) assert_type(np.emath.sqrt(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.log(f8), Any) assert_type(np.emath.log(AR_f8), npt.NDArray[Any]) assert_type(np.emath.log(c16), np.complexfloating[Any, Any]) assert_type(np.emath.log(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.log10(f8), Any) assert_type(np.emath.log10(AR_f8), npt.NDArray[Any]) assert_type(np.emath.log10(c16), np.complexfloating[Any, Any]) assert_type(np.emath.log10(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.log2(f8), Any) assert_type(np.emath.log2(AR_f8), npt.NDArray[Any]) assert_type(np.emath.log2(c16), np.complexfloating[Any, Any]) assert_type(np.emath.log2(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.logn(f8, 2), Any) assert_type(np.emath.logn(AR_f8, 4), npt.NDArray[Any]) assert_type(np.emath.logn(f8, 1j), np.complexfloating[Any, Any]) assert_type(np.emath.logn(AR_c16, 1.5), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.power(f8, 2), Any) assert_type(np.emath.power(AR_f8, 4), npt.NDArray[Any]) assert_type(np.emath.power(f8, 2j), np.complexfloating[Any, Any]) assert_type(np.emath.power(AR_c16, 1.5), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.arccos(f8), Any) assert_type(np.emath.arccos(AR_f8), npt.NDArray[Any]) assert_type(np.emath.arccos(c16), np.complexfloating[Any, Any]) assert_type(np.emath.arccos(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.arcsin(f8), Any) assert_type(np.emath.arcsin(AR_f8), npt.NDArray[Any]) assert_type(np.emath.arcsin(c16), np.complexfloating[Any, Any]) assert_type(np.emath.arcsin(AR_c16), npt.NDArray[np.complexfloating[Any, Any]]) assert_type(np.emath.arctanh(f8), Any) assert_type(np.emath.arctanh(AR_f8), npt.NDArray[Any]) assert_type(np.emath.arctanh(c16), np.complexfloating[Any, Any]) assert_type(np.emath.arctanh(AR_c16), npt.NDArray[np.complexfloating[Any, Any]])