Interface QRPDecomposition_F64<T extends Matrix>
- All Superinterfaces:
DecompositionInterface<T>,QRDecomposition<T>,QRPDecomposition<T>
public interface QRPDecomposition_F64<T extends Matrix> extends QRPDecomposition<T>
Implementation of QRPDecomposition for 64-bit floats
-
Method Summary
Modifier and Type Method Description voidsetSingularThreshold(double threshold)Specifies the threshold used to flag a column as being singular.Methods inherited from interface org.ejml.interfaces.decomposition.DecompositionInterface
decompose, inputModifiedMethods inherited from interface org.ejml.interfaces.decomposition.QRDecomposition
getQ, getRMethods 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.
-