sparray#
- class scipy.sparse.sparray(arg1, *, maxprint=None)[source]#
This class provides a base class for all sparse array and matrix classes. It cannot be instantiated. Most of the work is provided by subclasses.
- Attributes:
Methods
__len__()asformat(format[, copy])Return this array/matrix in the passed format.
astype(dtype[, casting, copy])Cast the array/matrix elements to a specified type.
conj([copy])Element-wise complex conjugation.
conjugate([copy])Element-wise complex conjugation.
copy()Returns a copy of this array/matrix.
count_nonzero([axis])Number of non-zero entries.
diagonal([k])Returns the kth diagonal of the array/matrix.
dot(other)Ordinary dot product.
maximum(other)Element-wise maximum between this and another array/matrix.
mean([axis, dtype, out])Compute the arithmetic mean along the specified axis.
minimum(other)Element-wise minimum between this and another array/matrix.
multiply(other)Element-wise multiplication by another array/matrix.
nonzero()Nonzero indices of the array/matrix.
power(n[, dtype])Element-wise power.
reshape(self, shape[, order, copy])Gives a new shape to a sparse array/matrix without changing its data.
resize(*shape)Resize the array/matrix in-place to dimensions given by
shape.setdiag(values[, k])Set diagonal or off-diagonal elements of the array/matrix.
sum([axis, dtype, out])Sum the array/matrix elements over a given axis.
toarray([order, out])Return a dense ndarray representation of this sparse array/matrix.
tobsr([blocksize, copy])Convert this array/matrix to Block Sparse Row format.
tocoo([copy])Convert this array/matrix to COOrdinate format.
tocsc([copy])Convert this array/matrix to Compressed Sparse Column format.
tocsr([copy])Convert this array/matrix to Compressed Sparse Row format.
todense([order, out])Return a dense representation of this sparse array.
todia([copy])Convert this array/matrix to sparse DIAgonal format.
todok([copy])Convert this array/matrix to Dictionary Of Keys format.
tolil([copy])Convert this array/matrix to List of Lists format.
trace([offset])Returns the sum along diagonals of the sparse array/matrix.
transpose([axes, copy])Reverses the dimensions of the sparse array/matrix.
__add__
__matmul__
__mul__
__pow__
__rmatmul__
__rmul__
__truediv__