File size: 178 Bytes
7885a28 |
1 2 3 4 5 6 7 |
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], m: int) -> int: ...
|
7885a28 |
1 2 3 4 5 6 7 |
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], m: int) -> int: ...
|