CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
lti_conversion.py21 linesDownload Raw Back to signal
1# This file is not meant for public use and will be removed in SciPy v2.0.0.
2# Use the `scipy.signal` namespace for importing the functions
3# included below.
4
5from scipy._lib.deprecation import _sub_module_deprecation
6
7__all__ = [  # noqa: F822
8    'tf2ss', 'abcd_normalize', 'ss2tf', 'zpk2ss', 'ss2zpk',
9    'cont2discrete', 'tf2zpk', 'zpk2tf', 'normalize'
10]
11
12
13def __dir__():
14    return __all__
15
16
17def __getattr__(name):
18    return _sub_module_deprecation(sub_package="signal", module="lti_conversion",
19                                   private_modules=["_lti_conversion"], all=__all__,
20                                   attribute=name)
21