scipy.sparse.lil_array.trace# lil_array.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).