Skip to main content

Load MATLAB .mat 7.3 into Python native data types

Project description

Python package pypi Version

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

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!

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
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. Let me know if you need this functionality, would be quick to implement.
  • See also hdf5storage, which can indeed be used for saving .mat, but has less features for loading

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mat73-0.50.tar.gz (17.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mat73-0.50-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file mat73-0.50.tar.gz.

File metadata

  • Download URL: mat73-0.50.tar.gz
  • Upload date:
  • Size: 17.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for mat73-0.50.tar.gz
Algorithm Hash digest
SHA256 2dcabfc6cca0ad4dba710d1070afec7fb8cdb5ac66098eb3f6be0a2b5edce2c3
MD5 212804c9009207550759aa9ee78a9c94
BLAKE2b-256 840491cde48d18d8db5b5a495d1d76676087c66a7a1c0829c500443270da176a

See more details on using hashes here.

File details

Details for the file mat73-0.50-py3-none-any.whl.

File metadata

  • Download URL: mat73-0.50-py3-none-any.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.10

File hashes

Hashes for mat73-0.50-py3-none-any.whl
Algorithm Hash digest
SHA256 2b5ef6efaad35706e838221344c24a6507c249293bae7cb5f3a49df0f9d607c5
MD5 a6556849a7e56d501e83dc7bdf225056
BLAKE2b-256 6127db9c96bf5ba315f3027c5a0d85c7f6ae06b4f445380c7b4a80f1c5740c96

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page