OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
fft
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:26:35 PM
rwxr-xr-x
📄
__init__.py
7.98 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
__init__.pyi
550 bytes
10/26/2024 01:26:27 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:27:38 PM
rwxr-xr-x
📄
_pocketfft.py
51.66 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
_pocketfft.pyi
2.32 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
_pocketfft_internal.cpython-310-darwin.so
103.82 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
helper.py
6.01 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
helper.pyi
1.13 KB
10/26/2024 01:26:27 PM
rw-r--r--
📄
setup.py
728 bytes
10/26/2024 01:26:27 PM
rw-r--r--
📁
tests
-
10/26/2024 01:28:54 PM
rwxr-xr-x
Editing: _pocketfft.pyi
Close
from collections.abc import Sequence from typing import Literal as L from numpy import complex128, float64 from numpy._typing import ArrayLike, NDArray, _ArrayLikeNumber_co _NormKind = L[None, "backward", "ortho", "forward"] __all__: list[str] def fft( a: ArrayLike, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def ifft( a: ArrayLike, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def rfft( a: ArrayLike, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def irfft( a: ArrayLike, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[float64]: ... # Input array must be compatible with `np.conjugate` def hfft( a: _ArrayLikeNumber_co, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[float64]: ... def ihfft( a: ArrayLike, n: None | int = ..., axis: int = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def fftn( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def ifftn( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def rfftn( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def irfftn( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[float64]: ... def fft2( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def ifft2( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def rfft2( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[complex128]: ... def irfft2( a: ArrayLike, s: None | Sequence[int] = ..., axes: None | Sequence[int] = ..., norm: _NormKind = ..., ) -> NDArray[float64]: ...