Macaulay2 Engine
Loading...
Searching...
No Matches

◆ row2by2()

template<typename CoeffRing>
void SMat< CoeffRing >::row2by2 ( size_t r1,
size_t r2,
elem a1,
elem a2,
elem b1,
elem b2 )

Definition at line 959 of file smat.hpp.

968{
969 for (size_t c = 0; c < ncols_; c++)
970 vec_row_op2(columns_[c], r1, r2, a1, a2, b1, b2);
971}
void vec_row_op2(sparsevec *&v, size_t r1, size_t r2, const elem &a1, const elem &a2, const elem &b1, const elem &b2) const
Definition smat.hpp:664
sparsevec ** columns_
Definition smat.hpp:234
size_t ncols_
Definition smat.hpp:233
Definition smat.hpp:43

References columns_, ncols_, and vec_row_op2().

Referenced by MatElementaryOps< SMat< RT > >::row2by2().