Package org.ejml.interfaces.linsol
Interface ReducedRowEchelonForm_F32<T extends Matrix>
- All Superinterfaces:
ReducedRowEchelonForm<T>
- All Known Implementing Classes:
RrefGaussJordanRowPivot_FDRM
Implementation of ReducedRowEchelonForm
for 32-bit floats
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setTolerance
(float tol) Specifies tolerance for determining if the system is singular and it should stop processing.Methods inherited from interface org.ejml.interfaces.linsol.ReducedRowEchelonForm
reduce
-
Method Details
-
setTolerance
void setTolerance(float tol) Specifies tolerance for determining if the system is singular and it should stop processing. A reasonable value is: tol = EPS/max(||tol||).- Parameters:
tol
- Tolerance for singular matrix. A reasonable value is: tol = EPS/max(||tol||). Or just set to zero.
-