scipy.io.mmread无法读取.mtx文件

时间:2018-12-05 13:02:38

标签: python python-2.7 scipy

我有一个小的.mtx文件,我想阅读该文件,以后再在Python中进行操作。 这是mtx示例文件:

Keta := Matrix(4, 4, [[0,1/6,1/2,0],[0,0,0,0],[0,0,0,0],[0,0,0,0]]); 

在Python中,我正在使用以下命令读取源文件:

from scipy.io import mmread, mminfo
Keta1 = mmread('Keta_1.mtx')

然后我得到这个错误:

ValueError: source is not in Matrix Market format

0 个答案:

没有答案