Interface QRPDecomposition_F64<T extends Matrix>
- All Superinterfaces:
DecompositionInterface<T>
,QRDecomposition<T>
,QRPDecomposition<T>
- All Known Implementing Classes:
QRColPivDecompositionHouseholderColumn_DDRM
Implementation of QRPDecomposition
for 64-bit floats
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setSingularThreshold
(double threshold) Specifies the threshold used to flag a column as being singular.Methods inherited from interface org.ejml.interfaces.decomposition.DecompositionInterface
decompose, inputModified
Methods inherited from interface org.ejml.interfaces.decomposition.QRDecomposition
getQ, getR
Methods inherited from interface org.ejml.interfaces.decomposition.QRPDecomposition
getColPivotMatrix, getColPivots, getRank
-
Method Details
-
setSingularThreshold
void setSingularThreshold(double threshold) Specifies the threshold used to flag a column as being singular. The specified threshold is relative and will very depending on the system. The default value is UtilEJML.EPS.
- Parameters:
threshold
- Singular threshold.
-