scipy.sparse.bsr_matrix.rmatvec

bsr_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.

This Page