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
1