是否可以在Python中读取二进制MATLAB .mat文件?
我看到SciPy声称支持读取.mat文件,但我没有成功。我安装了SciPy 0.7.0版本,但找不到loadmat()方法。
是否可以在Python中读取二进制MATLAB .mat文件?
我看到SciPy声称支持读取.mat文件,但我没有成功。我安装了SciPy 0.7.0版本,但找不到loadmat()方法。
当前回答
首先将.mat文件保存为:
save('test.mat', '-v7')
之后,在Python中,使用常用的loadmat函数:
import scipy.io as sio
test = sio.loadmat('test.mat')
其他回答
需要导入,导入scipy.io…
import scipy.io
mat = scipy.io.loadmat('file.mat')
将mat文件读入混合数据类型的pandas dataFrame
import scipy.io as sio
mat=sio.loadmat('file.mat')# load mat-file
mdata = mat['myVar'] # variable in mat file
ndata = {n: mdata[n][0,0] for n in mdata.dtype.names}
Columns = [n for n, v in ndata.items() if v.size == 1]
d=dict((c, ndata[c][0]) for c in Columns)
df=pd.DataFrame.from_dict(d)
display(df)
既不scipy.io。savemat,或scipy.io.loadmat适用于MATLAB数组版本7.3。但好的部分是MATLAB版本7.3文件是hdf5数据集。因此,可以使用包括NumPy在内的许多工具读取它们。
对于Python,您将需要h5py扩展,这需要在您的系统上安装HDF5。
import numpy as np
import h5py
f = h5py.File('somefile.mat','r')
data = f.get('data/variable1')
data = np.array(data) # For converting to a NumPy array
读取文件
import scipy.io
mat = scipy.io.loadmat(file_name)
检查MAT变量的类型
print(type(mat))
#OUTPUT - <class 'dict'>
字典中的键是MATLAB变量,值是分配给这些变量的对象。
Scipy可以很好地加载.mat文件。 我们可以使用get()函数将其转换为numpy数组。
mat = scipy.io.loadmat('point05m_matrix.mat')
x = mat.get("matrix")
print(type(x))
print(len(x))
plt.imshow(x, extent=[0,60,0,55], aspect='auto')
plt.show()