Interface DeflationCriterion
-
- All Known Implementing Classes:
DefaultDeflationCriterion
public interface DeflationCriterionDetermines whether a sub-diagonal entry is sufficiently small to be neglected.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisNegligible(Matrix H, int i, int j, double epsilon)Checks whether a sub-diagonal element is sufficiently small.
-
-
-
Method Detail
-
isNegligible
boolean isNegligible(Matrix H, int i, int j, double epsilon)
Checks whether a sub-diagonal element is sufficiently small.- Parameters:
H- a matrixi- a row indexj- a column indexepsilon- a precision parameter: when a number |x| ≤ ε, it is considered 0- Returns:
trueis H[i,j] is deemed small enough
-
-