Class PythonIntegerLeastSquareSolver
- java.lang.Object
-
- org.orekit.estimation.measurements.gnss.PythonIntegerLeastSquareSolver
-
- All Implemented Interfaces:
IntegerLeastSquareSolver
public class PythonIntegerLeastSquareSolver extends Object implements IntegerLeastSquareSolver
-
-
Constructor Summary
Constructors Constructor Description PythonIntegerLeastSquareSolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectvoid
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to objectIntegerLeastSquareSolution[]
solveILS(int nbSol, double[] floatAmbiguities, int[] indirection, RealMatrix covariance)
Find the best solutions to an Integer Least Square problem.
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
solveILS
public IntegerLeastSquareSolution[] solveILS(int nbSol, double[] floatAmbiguities, int[] indirection, RealMatrix covariance)
Find the best solutions to an Integer Least Square problem.- Specified by:
solveILS
in interfaceIntegerLeastSquareSolver
- 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
-
-