上传者: 38585666
|
上传时间: 2021-10-17 21:57:06
|
文件大小: 41KB
|
文件类型: -
python3读取.mat文件:
代码:
from scipy import io
mat_file = r'/home/data/1.mat'
io.loadmat(mat_file)
报错:
Traceback (most recent call last):
File "/home/user1/test.py", line 78, in
show_mat(mat)
File "/home/user1/test.py", line 50, in show_mat_flow
x = io.loadmat(mat_file)
File "/home/user