Package org.ejml.interfaces.linsol
Interface ReducedRowEchelonForm_F64<T extends Matrix>
-
- All Superinterfaces:
ReducedRowEchelonForm<T>
public interface ReducedRowEchelonForm_F64<T extends Matrix> extends ReducedRowEchelonForm<T>
Implementation of
ReducedRowEchelonFormfor 64-bit floats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetTolerance(double 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 Detail
-
setTolerance
void setTolerance(double 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.
-
-