pub fn sub_assign<I: Index, T: ComplexField, RhsT: Conjugate<Canonical = T>>(
dst: SparseColMatMut<'_, I, T>,
rhs: SparseColMatRef<'_, I, RhsT>,
)Expand description
computes the difference of dst and src and stores the result in dst without changing its
symbolic structure.
§panics
panics if dst and rhs don’t have matching dimensions.
panics if rhs contains an index that’s unavailable in dst.