Files
2024-10-07 10:13:40 +07:00

7 lines
187 B
Python

from numpy.typing import NDArray
from typing import Any
def pick_pade_structure(a: NDArray[Any]) -> tuple[int, int]: ...
def pade_UV_calc(Am: NDArray[Any], n: int, m: int) -> None: ...