Python中可以使用SciPy库中的io模块来读取.mat文件。
首先,需要安装SciPy库。可以使用以下命令来安装:
pip install scipy
然后,可以使用scipy.io.loadmat()
函数来读取.mat文件。以下是一个示例代码:
import scipy.io
# 读取.mat文件
data = scipy.io.loadmat('filename.mat')
# 打印数据
print(data)
其中,'filename.mat'
是要读取的.mat文件的路径。读取的.mat文件的内容将存储在一个字典中,可以通过键值对的方式访问其中的数据。
注意:读取.mat文件需要安装SciPy库并导入scipy.io
模块。