Class ResidualFilter<T extends ObservedMeasurement<T>>

java.lang.Object
org.orekit.estimation.measurements.filtering.ResidualFilter<T>
Type Parameters:
T - the type of the measurement
All Implemented Interfaces:
MeasurementFilter<T>

public class ResidualFilter<T extends ObservedMeasurement<T>> extends Object implements MeasurementFilter<T>
Residual pre-processing filter.

The measurement residual is defined by the difference between the observed value and the estimated value of the measurement.

Since:
10.2
Author:
Bryan Cazabonne, David Soulard
  • Constructor Details

    • ResidualFilter

      public ResidualFilter(double threshold, boolean scaling)
      Constructor.
      Parameters:
      threshold - maximum value for the measurement residual
      scaling - flag for the scaling of residuals
      Since:
      14.0
    • ResidualFilter

      public ResidualFilter(double threshold)
      Constructor.
      Parameters:
      threshold - maximum value for the measurement residual
  • Method Details