-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🗑️
signal
: deprecated 1.15.0 removals
- Loading branch information
Showing
5 changed files
with
10 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,8 @@ | ||
# This module is not meant for public use and will be removed in SciPy v2.0.0. | ||
from typing_extensions import deprecated | ||
|
||
__all__ = ["cspline2d", "qspline2d", "sepfir2d", "symiirorder1", "symiirorder2"] | ||
from typing_extensions import deprecated | ||
|
||
# _spline_filters | ||
@deprecated("will be removed in SciPy v2.0.0") | ||
def qspline2d(signal: object, lamb: object = ..., precision: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v2.0.0") | ||
def cspline2d(signal: object, lamb: object = ..., precision: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v2.0.0") | ||
def symiirorder1(signal: object, c0: object, z1: object, precision: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v2.0.0") | ||
def symiirorder2(input: object, r: object, omega: object, precision: object = ...) -> object: ... | ||
__all__ = ["sepfir2d"] | ||
|
||
# _spline | ||
@deprecated("will be removed in SciPy v2.0.0") | ||
def sepfir2d(input: object, hrow: object, hcol: object) -> object: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,2 @@ | ||
# This module is not meant for public use and will be removed in SciPy v1.15.0. | ||
from typing_extensions import deprecated | ||
|
||
__all__ = ["cascade", "convolve", "cwt", "daub", "morlet", "morlet2", "qmf", "ricker"] | ||
|
||
@deprecated("will be removed in SciPy v1.15.0") | ||
def convolve(in1: object, in2: object, mode: object = ..., method: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def cwt(data: object, wavelet: object, widths: object, dtype: object = ..., **kwargs: object) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def cascade(hk: object, J: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def morlet(M: object, w: object = ..., s: object = ..., complete: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def daub(p: object) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def morlet2(M: object, s: object, w: object = ...) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def qmf(hk: object) -> object: ... | ||
@deprecated("will be removed in SciPy v1.15.0") | ||
def ricker(points: object, a: object) -> object: ... | ||
# This file is not meant for public use and will be removed in SciPy v2.0.0. | ||
__all__: list[str] = [] |