Skip to content

Commit

Permalink
ENH:linalg: Typing stubs for expm cython funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
ilayn committed Mar 12, 2022
1 parent 9d6cd5e commit 74314eb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scipy/linalg/_matfuncs_expm.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from numpy.typing import NDArray
from typing import Any, Tuple

def pick_pade_structure(a: NDArray[Any]) -> Tuple[int, int]: ...

def pade_UV_calc(Am: NDArray[Any], n: int, m: int) -> None: ...

0 comments on commit 74314eb

Please sign in to comment.