标签: python python-2.7 sparse-matrix
我有一个脚本来计算COO格式的三个属性:
data COO format data array of the matrix row COO format row index array of the matrix col COO format column index array of the matrix
我想使用这三个数组初始化一个coo_matrix(),以便使用coo_matrix类可用的方法。在不更改主脚本的情况下,最快的方法是什么?
答案 0 :(得分:0)
scipy.sparse documentation
scipy.sparse
coo_matrix((data, (row, column)), [shape=(M, N)])