在lil稀疏矩阵,python

时间:2018-07-17 22:13:00

标签: python tuples sparse-matrix

我正在使用lil稀疏矩阵,我想在其中存储元组。有没有办法存储它?我尝试的方法不起作用,所以没有任何想法吗?

from scipy.sparse import lil_matrix

mtx=lil_matrix((10, 10)) #create lil sparse matrix


mtx[5,5]=(2,2)  #enter tuple as value into position 5,5

ValueError: Trying to assign a sequence to an item

0 个答案:

没有答案