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:
-
Method Summary
Modifier and TypeMethodDescriptionsolveILS(int nbSol, double[] floatAmbiguities, int[] indirection, RealMatrix covariance) Find the best solutions to an Integer Least Square problem.
-
Method Details
-
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
nbSolsolutions a to the Integer Least Square problem, in increasing squared distance order
-