hyb
2025-12-30 399ffc4d9829f70529d3b096fe4228f7496cc566
1
2
3
4
5
6
7
8
9
import numpy as np
import numpy.typing as npt
 
AR_f8: npt.NDArray[np.float64]
 
np.lib.stride_tricks.as_strided(AR_f8, shape=8)  # type: ignore[call-overload]
np.lib.stride_tricks.as_strided(AR_f8, strides=8)  # type: ignore[call-overload]
 
np.lib.stride_tricks.sliding_window_view(AR_f8, axis=(1,))  # type: ignore[call-overload]