先安装hdf5storage这个包
pip3 install hdf5storage
然后在当前目录下放入要读取的mat文件
# 将matlab中的mat文件读取出来
import hdf5storagedata = hdf5storage.loadmat('inputWeights.mat')
print(data['inputWeights'])
先安装hdf5storage这个包
pip3 install hdf5storage
然后在当前目录下放入要读取的mat文件
# 将matlab中的mat文件读取出来
import hdf5storagedata = hdf5storage.loadmat('inputWeights.mat')
print(data['inputWeights'])