Answers for "python + read a .mat file"

2

python open mat file

import scipy.io
mat = scipy.io.loadmat('file.mat')
Posted by: Guest on August-26-2020
0

read .mat file in python

with h5py.File('test.mat', 'r') as file:
    a = list(file['a'])
Posted by: Guest on May-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language