Class Bias<T extends ObservedMeasurement<T>>
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.Bias<T>
-
- Type Parameters:
T
- the type of the measurement
- All Implemented Interfaces:
EstimationModifier<T>
public class Bias<T extends ObservedMeasurement<T>> extends Object implements EstimationModifier<T>
Class modeling a measurement bias.- Since:
- 8.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ParameterDriver>
getParametersDrivers()
Get the drivers for this modifier parameters.void
modify(EstimatedMeasurement<T> estimated)
Apply a modifier to an estimated measurement.
-
-
-
Constructor Detail
-
Bias
public Bias(String[] name, double[] bias, double[] scale, double[] min, double[] max)
Simple constructor.- Parameters:
name
- name of the biasbias
- reference value of the biasscale
- scale of the bias, for normalizationmin
- minimum value of the biasmax
- maximum value of the bias
-
-
Method Detail
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for this modifier parameters.For a bias, there are
ObservedMeasurement.getDimension()
parameter drivers, sorted in components order.- Specified by:
getParametersDrivers
in interfaceEstimationModifier<T extends ObservedMeasurement<T>>
- Returns:
- drivers for this modifier parameters
-
modify
public void modify(EstimatedMeasurement<T> estimated)
Apply a modifier to an estimated measurement.- Specified by:
modify
in interfaceEstimationModifier<T extends ObservedMeasurement<T>>
- Parameters:
estimated
- estimated measurement to modify
-
-