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 Dec 9, 2021
1 parent be7c3bc commit e4528c2
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 e4528c2

Please sign in to comment.