scipy.sparse.csc_matrix.trace# csc_matrix.trace(offset=0)[source]# Returns the sum along diagonals of the sparse array/matrix. Parameters: offsetint, optionalWhich diagonal to get, corresponding to elements a[i, i+offset]. Default: 0 (the main diagonal).