This is documentation for an old release of SciPy (version 0.8.). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.sparse.csr_matrix.rmatvec
-
csr_matrix.rmatvec(*args, **kwds)
rmatvec is deprecated!
- Multiplies the vector ‘other’ by the sparse matrix, returning a
dense vector as a result.
- If ‘conjugate’ is True:
- returns A.transpose().conj() * other
- Otherwise:
- returns A.transpose() * other.