-
Notifications
You must be signed in to change notification settings - Fork 0
/
state.pyi
30 lines (18 loc) · 840 Bytes
/
state.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""Systems of state matrix representation from the Appendix."""
import numpy.typing as npt
def convm(x: npt.ArrayLike, p: int = ...): ...
def covar(x: npt.ArrayLike, p: int = ...): ...
def normalprony(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def ywe(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def nywe(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def mywe(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def eywe(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def normaldeterministic(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()
def wienerhopf(x: npt.ArrayLike, p: int = ..., q: int = ...):
raise NotImplementedError()