Hi, I want to compute a RREF where the leftmost (independent) columns are always chosen as pivots.
From what I saw in a couple of test cases, --method=1 does the job.
Is it true? If so, I'd love to see it mentioned somewhere in the docs.
sparserref --help is not very helpful:
-m, --method method of RREF [default: 0]
And this comment in the code also does not go into detail:
|
// rref_option |
|
// method 0: right and left search |
|
// method 1: only right search |
|
// method 2: hibrid |
Hi, I want to compute a RREF where the leftmost (independent) columns are always chosen as pivots.
From what I saw in a couple of test cases,
--method=1does the job.Is it true? If so, I'd love to see it mentioned somewhere in the docs.
sparserref --helpis not very helpful:And this comment in the code also does not go into detail:
SparseRREF/sparse_rref.h
Lines 159 to 162 in 3f1aae6