mat4py icon indicating copy to clipboard operation
mat4py copied to clipboard

Python module for loading and saving data in the Matlab (TM) MAT-file format

Results 5 mat4py issues
Sort by recently updated
recently updated
newest added

As from issue's title. This simple code: ``` from mat4py import savemat import numpy as np data = np.ones((10,1)) savemat('./test.mat', {'data':data}) ``` raises an error. The error arises from numpy...

ValueError: Struct field names are too long

Hi, I modified the code to load and save complex datatype arrays from/to .mat files. When loading, it creates a tuple of python builtin complex values. I've implemented a test...

This package is great! It provides something so much more usable than the default `scipy.io.loadmat`. But it does seem to struggle on a lot of newer matlab formats. I noticed...

Saving a simple test struct created in Octave a.b = 1; save -v7 test.mat a and loading with loadmat loadmat('test.mat') returns the error \temp\loadmat.py in read_struct_array(fd, endian, header) 315 if...