Top "Mat-file" questions

MAT-file is a binary file format, that can stores multiple MATLAB variables.

Read .mat files in Python

Is it possible to read binary MATLAB .mat files in Python? I've seen that SciPy has alleged support for reading .…

python matlab file-io scipy mat-file
How do you open .mat files in Octave?

I have a ".mat" file that I want to open and see the contents of. Since I don't have MATLAB, …

matlab terminal octave mat-file
reading v 7.3 mat file in python

I am trying to read a matlab file with the following code import scipy.io mat = scipy.io.loadmat('test.…

python matlab io mat-file
Importing an array from matlab into R

I'm sure this is a simple problem, but I haven't been able to find an obvious solution. I have a …

r matlab file-io matrix mat-file
creating a .mat file from python

I have a variable exon = [[[1, 2], [3, 4], [5, 6]], [[7, 8], [9, 10]]]. I would like to create a mat file like the following >> exon : [3*2 double] [2*2 …

python scipy mat-file
Saving and loading Python dict with savemat results in error

Here is an minimal example of the error I get. If I understood the documentation correctly, this should be working, …

python scipy mat-file
How to preserve matlab struct when accessing in python?

I have a mat-file that I accessed using from scipy import io mat = io.loadmat('example.mat') From matlab, example.…

python matlab structure mat-file preserve
Access array contents from a .mat file loaded using Scipy.io.loadmat - python

UPDATE: This is a long question that boils down to, can someone explain the numpy array class to me? I …

python matlab numpy scipy mat-file
deleting variables from a .mat file

Does anyone here know how to delete a variable from a matlab file? I know that you can add variables …

matlab mat-file
How can I check the contents of a MAT-file in MATLAB without loading it?

I have a large structure in a MAT-file. I want to check if a specific field is present in the …

matlab struct mat-file