Load and save data in the Matlab (TM) MAT-file format.
Project description
The package provides the mat4py module with the functions loadmat and savemat that allows for reading resp. writing data in the Matlab (TM) MAT-file format.
Matlab data is loaded into basic Python data types. Matrices are stored row-major using lists of lists. Matlab structs and cells are represented using Python dicts.
The package can be run from the command line, in which case, it provides a routine for converting Matlab MAT-files to/from JSON files.
Load data from MAT-file
The function loadmat loads all variables stored in the MAT-file into a simple Python data structure, using only Python’s dict and list objects. Numeric and cell arrays are converted to row-ordered nested lists. Arrays are squeezed to eliminate arrays with only one element. The resulting data structure is composed of simple types that are compatible with the JSON format.
Example: Load a MAT-file into a Python data structure:
data = loadmat('datafile.mat')
The variable data is a dict with the variables and values contained in the MAT-file.
Save Python data structure to a MAT-file
Python data can be saved to a MAT-file, with the function savemat. Data has to be structured in the same way as for loadmat, i.e. it should be composed of simple data types, like dict, list, str, int and float.
Example: Save a Python data structure to a MAT-file:
savemat('datafile.mat', data)
The parameter data shall be a dict with the variables.
Command line usage
The package can be run from the command line, in which case, it provides a routine for converting Matlab MAT-files to/from JSON files.
Call:
python -m mat4py.cmd -h
to get help with command line usage.
Known limitations
The following Matlab data structures/types are not supported:
Arrays with more than 2 dimensions
Arrays with complex numbers
Sparse arrays
Function arrays
Object classes
Anonymous function classes
License
The MIT License (MIT) Copyright (c) 2011-2023 Nephics AB
See the LICENSE.txt file.
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 mat4py-0.6.0.tar.gz
.
File metadata
- Download URL: mat4py-0.6.0.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 438927e6c16831a337596f593eb0b391c4cf6c982280b635ae412e80dff7fd07 |
|
MD5 | fcb1ce953da9fa283d2a44f7cd2eb42e |
|
BLAKE2b-256 | 9bccf918875b4612d665bf3cba68714014ee599d0131851f99f7d0686f50b800 |
File details
Details for the file mat4py-0.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: mat4py-0.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c15f39c7df092f01506044f65999fc9c7d71306f8fc850b1003e15ed64c6bae |
|
MD5 | 9b0fd0001a30273af9ae89e28058fbd3 |
|
BLAKE2b-256 | 55e94e2deb2c904e1d0bde3fa49c054160c2f56ffee5d327dc65fe41bb360613 |