Fixed database typo and removed unnecessary class identifier.
This commit is contained in:
parent
00ad49a143
commit
45fb349a7d
5098 changed files with 952558 additions and 85 deletions
18
venv/Lib/site-packages/scipy/io/matlab/__init__.py
Normal file
18
venv/Lib/site-packages/scipy/io/matlab/__init__.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
"""
|
||||
Utilities for dealing with MATLAB(R) files
|
||||
|
||||
Notes
|
||||
-----
|
||||
MATLAB(R) is a registered trademark of The MathWorks, Inc., 3 Apple Hill
|
||||
Drive, Natick, MA 01760-2098, USA.
|
||||
|
||||
"""
|
||||
# Matlab file read and write utilities
|
||||
from .mio import loadmat, savemat, whosmat
|
||||
from . import byteordercodes
|
||||
|
||||
__all__ = ['loadmat', 'savemat', 'whosmat', 'byteordercodes']
|
||||
|
||||
from scipy._lib._testutils import PytestTester
|
||||
test = PytestTester(__name__)
|
||||
del PytestTester
|
Loading…
Add table
Add a link
Reference in a new issue