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 2, 2021
1 parent 3600b18 commit 736f7ca
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scipy/linalg/_matfuncs_expm.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from numpy.typing import NDArray
from typing import Any, Tuple

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

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

0 comments on commit 736f7ca

Please sign in to comment.