Interface BatchLSObserver
-
public interface BatchLSObserver
Observer forbatch least squares estimator
iterations.This interface is intended to be implemented by users to monitor the progress of the estimator during estimation.
- Since:
- 8.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation)
Notification callback for the end of each evaluation.
-
-
-
Method Detail
-
evaluationPerformed
void evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation)
Notification callback for the end of each evaluation.- Parameters:
iterationsCount
- iterations countevaluationsCount
- evaluations countorbits
- current estimated orbitsestimatedOrbitalParameters
- estimated orbital parametersestimatedPropagatorParameters
- estimated propagator parametersestimatedMeasurementsParameters
- estimated measurements parametersevaluationsProvider
- provider for measurements evaluations resulting from the current estimated orbit (this is an unmodifiable view of the current evaluations, its content is changed at each iteration)lspEvaluation
- current evaluation of the underlyingleast squares problem
-
-