Load MATLAB .mat 7.3 into Python native data types (via h5/hd5/hdf5/h5py)
Project description
mat 7.3
Load MATLAB 7.3 .mat files into Python.
Starting with MATLAB 7.3, .mat
files have been changed to store as custom hdf5
files.
This means they cannot be loaded by scipy.io.loadmat
any longer and raise.
NotImplementedError: Please use HDF reader for matlab v7.3 files, e.g. h5py
Quickstart
This library loads MATLAB 7.3 HDF5 files into a Python dictionary.
import mat73
data_dict = mat73.loadmat('data.mat')
As easy as that!
By enabling use_attrdict=True
you can even access sub-entries of structs
as attributes, just like in MATLAB:
data_dict = mat73.loadmat('data.mat', use_attrdict=True)
struct = data_dict['structure'] # assuming a structure was saved in the .mat
struct[0].var1 == struct[0]['var1'] # it's the same!
You can also specifiy to only load a specific variable or variable tree, useful to reduce loading times
data_dict = mat73.loadmat('data.mat', only_include='structure')
struct = data_dict['structure'] # now only structure is loaded and nothing else
data_dict = mat73.loadmat('data.mat', only_include=['var/subvar/subsubvar', 'tree1/'])
tree1 = data_dict['tree1'] # the entire tree has been loaded, so tree1 is a dict with all subvars of tree1
subsubvar = data_dict['var']['subvar']['subsubvar'] # this subvar has been loaded
Installation
To install, run:
pip install mat73
Alternatively for most recent version:
pip install git+https://github.com/skjerns/mat7.3
Datatypes
The following MATLAB datatypes can be loaded
MATLAB | Python |
---|---|
logical | np.bool_ |
single | np.float32 |
double | np.float64 |
int8/16/32/64 | np.int8/16/32/64 |
uint8/16/32/64 | np.uint8/16/32/64 |
complex | np.complex128 |
char | str |
struct | list of dicts |
cell | list of lists |
canonical empty | [] |
missing | None |
sparse | scipy.sparse.csc |
Other (ie Datetime, ...) | Not supported |
Short-comings
- This library will only load mat 7.3 files. For older versions use
scipy.io.loadmat
- Proprietary MATLAB types (e.g
datetime
,duriation
, etc) are not supported. If someone tells me how to convert them, I'll implement that - For now, you can't save anything back to the .mat. It's a bit more difficult than expected, so it's not on the roadmap for now
- See also hdf5storage, which can indeed be used for saving .mat, but has less features for loading
- See also pymatreader which has a (maybe even better) implementation of loading MAT files, even for older ones
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mat73-0.65.tar.gz
.
File metadata
- Download URL: mat73-0.65.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad38a06af3d483632bd939ee572b3724ea8c03d37916765d7278f9de95541ade |
|
MD5 | d69d69418892b41d28036d0d07c904de |
|
BLAKE2b-256 | 92610e6375513085b13ad23ab150fc83d4d8faa91cba56eb2f30b646259f8214 |
File details
Details for the file mat73-0.65-py3-none-any.whl
.
File metadata
- Download URL: mat73-0.65-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aadfcd00f328eb8f75dd1d4a060a956dc0abefcf5af20f5bc69a5aae64d62cbf |
|
MD5 | ee6d2d5e3796f7aed4f2382561a29515 |
|
BLAKE2b-256 | c924e867b1b89b2a2102a5a3bb64ddcd49c5cb815244b2dadff7740c6a422e4f |