我有一个小的.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