public interface ReducedRowEchelonForm<T extends Matrix>
An augmented system matrix is said to be in reduced row echelon form (RREF) if the following are true:
[1] Page 19 in, Otter Bretscherm "Linear Algebra with Applications" Prentice-Hall Inc, 1997
Modifier and Type | Method and Description |
---|---|
void |
reduce(T A,
int coefficientColumns)
Puts the augmented matrix into RREF.
|
void reduce(T A, int coefficientColumns)
A
- Input: Augmented matrix. Output: RREF. Modified.coefficientColumns
- Number of coefficients in the system matrix.