feat: rigorous physics revision for Paper 1 based on adversarial review

This commit is contained in:
codex
2026-06-01 22:22:35 +00:00
parent 2e839369d9
commit d8deafd138
5425 changed files with 1552613 additions and 43 deletions
@@ -0,0 +1,16 @@
# This file is not meant for public use and will be removed in SciPy v2.0.0.
# Use the `scipy.io.matlab` namespace for importing the functions
# included below.
from scipy._lib.deprecation import _sub_module_deprecation
__all__ = ["MatReadError", "MatReadWarning", "MatWriteError"] # noqa: F822
def __dir__():
return __all__
def __getattr__(name):
return _sub_module_deprecation(sub_package="io.matlab", module="miobase",
private_modules=["_miobase"], all=__all__,
attribute=name)