Interface IntegerLeastSquareSolver
-
- All Known Implementing Classes:
AbstractLambdaMethod
,IntegerBootstrapping
,LambdaMethod
,ModifiedLambdaMethod
public interface IntegerLeastSquareSolver
Interface for algorithms solving integer least square problems.- Since:
- 10.0
- Author:
- Luc Maisonobe
- See Also:
IntegerLeastSquareSolution
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegerLeastSquareSolution[]
solveILS(int nbSol, double[] floatAmbiguities, int[] indirection, RealMatrix covariance)
Find the best solutions to an Integer Least Square problem.
-
-
-
Method Detail
-
solveILS
IntegerLeastSquareSolution[] solveILS(int nbSol, double[] floatAmbiguities, int[] indirection, RealMatrix covariance)
Find the best solutions to an Integer Least Square problem.- Parameters:
nbSol
- number of solutions to search forfloatAmbiguities
- float estimates of ambiguitiesindirection
- indirection array to extract ambiguity covariances from global covariance matrixcovariance
- global covariance matrix (includes ambiguities among other parameters)- Returns:
- at most
nbSol
solutions a to the Integer Least Square problem, in increasing squared distance order
-
-