smith2.spad line 1 [edit on github]
Gaussian elimination using only 1 or -1
as pivots
pre_gauss(m)
performs Gaussian eliminaton on rows of m
using only 1 and -1
as pivots. Note: m
is modified in place
pre_lr(m,
is like pre_gauss, but records positions of pivots in pi
, pj)pi
and pj
and returns transformation matrix. m
, pi
, pj
are modified in place
pre_smith(m)
first performs pre_gauss(m
) and then drops all rows and columns of m
containing pivots.