CodeCollection2018
10/5/2019 - 2:12 PM

scipy库函数

scipy中常见的系数矩阵包括csc_matrix,coo_matrix,csr_matrix,lil_matrix,bsr_matrix.dia_matrix。详解见:
https://blog.csdn.net/nkwangjie/article/details/17502443

scipy.sparse.find(A)可以查找矩阵A中非0值所在的行列值,返回三个list分别表示非零值所在的行/列/值的大小。

scipy.sparse中的所有的稀疏矩阵都有两个方法toarray()和todense(),区别在于前者是返回ndarray,后者是返回numpy.matrix对象

sp.triu(a,k)和sp.tril(a,k)分别表示返回矩阵a的upper triangular和lower triangular上三角和下三角矩阵,以format形式,k表示指定的最低对角线位置。