python读取mat文件
Posted 王小山的空间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取mat文件相关的知识,希望对你有一定的参考价值。
import scipy.io
data = scipy.io.loadmat(‘1.mat‘) # 假设文件名为1.mat
# data类型为dictionary
print data.keys() # 即可知道Mat文件中存在数据名,假设存在‘x‘, ‘y‘两列数据
print data[‘x‘]
print data[‘y‘]
以上是关于python读取mat文件的主要内容,如果未能解决你的问题,请参考以下文章