标签: python matrix
我想阅读" .mtx文件"使用Python。矩阵文件(31x31)由运输模拟工具(visum)给出。我使用了以下代码:
from scipy.io import mmread A = mmread('./saclay/demand_visum.mtx')
我收到了消息:
ValueError: not enough values to unpack (expected 5, got 1)
非常感谢你的帮助。