Interface SvdIterationData
-
- All Superinterfaces:
IterationData
- All Known Implementing Classes:
SvdIterationDataImpl
public interface SvdIterationData extends IterationData
This is the interface for an object, which stores iteration data of an SVD iteration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetEigenValueLimit()java.util.List<java.lang.Double>getEigenValues()-
Methods inherited from interface cern.accsoft.steering.aloha.calc.iteration.IterationData
getActiveDifferenceRms, getAllDifferenceRms, getDifferenceRms, getIterationNumber, getValue, storeValue
-
-
-
-
Method Detail
-
getEigenValues
java.util.List<java.lang.Double> getEigenValues()
- Returns:
- the eigenvalues which were calculated during this iteration
-
getEigenValueLimit
double getEigenValueLimit()
- Returns:
- the cutoff-limit which was used in this iteration. (All eigenvalues below this limit have been thrown away)
-
-