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>,ParameterDriversProvider
Class modeling a measurement bias.
- Since:
- 8.0
- Author:
- Luc Maisonobe
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the name of the effect modifying the measurement.Get the drivers for parameters.voidmodify(EstimatedMeasurement<T> estimated) Apply a modifier to an estimated measurement.voidmodifyWithoutDerivatives(EstimatedMeasurementBase<T> estimated) Apply a modifier to an estimated measurement without derivatives.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
Constructor Details
-
Bias
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 Details
-
getEffectName
Get the name of the effect modifying the measurement.- Specified by:
getEffectNamein interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Returns:
- name of the effect modifying the measurement
-
getParametersDrivers
Get the drivers for parameters.For a bias, there are
ObservedMeasurement.getDimension()parameter drivers, sorted in components order.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
modifyWithoutDerivatives
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivativesin interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Parameters:
estimated- estimated measurement to modify
-
modify
Apply a modifier to an estimated measurement.- Specified by:
modifyin interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Parameters:
estimated- estimated measurement to modify
-