mio5_params.py 593 B

123456789101112131415161718
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. # Use the `scipy.io.matlab` namespace for importing the functions
  3. # included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. __all__ = [ # noqa: F822
  6. 'MatlabFunction', 'MatlabObject', 'MatlabOpaque', 'mat_struct',
  7. ]
  8. def __dir__():
  9. return __all__
  10. def __getattr__(name):
  11. return _sub_module_deprecation(sub_package="io.matlab", module="mio5_params",
  12. private_modules=["_mio5_params"], all=__all__,
  13. attribute=name)