Answers for "using .mat file in python"

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

import h5py
with h5py.File('test.mat', 'r') as file:
    print(list(file.keys()))
Posted by: Guest on May-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language