从其属性(data,row,col)初始化COO矩阵

时间:2017-07-04 11:56:10

标签: 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类可用的方法。在不更改主脚本的情况下,最快的方法是什么?

1 个答案:

答案 0 :(得分:0)

scipy.sparse documentation

coo_matrix((data, (row, column)), [shape=(M, N)])