标签:mat 文件中 key data color span scipy 读取 ict
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‘]
标签:mat 文件中 key data color span scipy 读取 ict
原文地址:https://www.cnblogs.com/nku-wangfeng/p/8992373.html