Class PythonEstimationsProvider
- java.lang.Object
-
- org.orekit.estimation.measurements.PythonEstimationsProvider
-
- All Implemented Interfaces:
EstimationsProvider
public class PythonEstimationsProvider extends Object implements EstimationsProvider
-
-
Constructor Summary
Constructors Constructor Description PythonEstimationsProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectEstimatedMeasurement<?>
getEstimatedMeasurement(int index)
Get one estimated measurement.int
getNumber()
Get the number of evaluations available.void
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 object
-
-
-
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
-
getNumber
public int getNumber()
Get the number of evaluations available.- Specified by:
getNumber
in interfaceEstimationsProvider
- Returns:
- number of evaluations available
-
getEstimatedMeasurement
public EstimatedMeasurement<?> getEstimatedMeasurement(int index)
Get one estimated measurement.- Specified by:
getEstimatedMeasurement
in interfaceEstimationsProvider
- Parameters:
index
- index of the estimated measurement, must be between 0 andgetNumber()
- 1, chronologically sorted- Returns:
- estimated measurement at specified index
-
-