Class MeasurementNoise<T extends ObservedMeasurement<T>>
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.MeasurementNoise<T>
-
- Type Parameters:
T- the type of the measurement
- All Implemented Interfaces:
EstimationModifier<T>,ParameterDriversProvider
public class MeasurementNoise<T extends ObservedMeasurement<T>> extends Object implements EstimationModifier<T>
Class modeling a measurement noise.- Since:
- 14.0
- Author:
- Romain Serra
-
-
Constructor Summary
Constructors Constructor Description MeasurementNoise(CorrelatedRandomVectorGenerator randomVectorGenerator)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEffectName()Get the name of the effect modifying the measurement.List<ParameterDriver>getParametersDrivers()Get the drivers for parameters.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, wait
-
Methods inherited from interface org.orekit.estimation.measurements.EstimationModifier
modify
-
Methods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
-
-
-
Constructor Detail
-
MeasurementNoise
public MeasurementNoise(CorrelatedRandomVectorGenerator randomVectorGenerator)
Simple constructor.- Parameters:
randomVectorGenerator- noise generator assumed to have a consistent dimension with measurement
-
-
Method Detail
-
getEffectName
public String 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
public List<ParameterDriver> getParametersDrivers()
Get the drivers for parameters.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
modifyWithoutDerivatives
public void modifyWithoutDerivatives(EstimatedMeasurementBase<T> estimated)
Apply a modifier to an estimated measurement without derivatives.- Specified by:
modifyWithoutDerivativesin interfaceEstimationModifier<T extends ObservedMeasurement<T>>- Parameters:
estimated- estimated measurement to modify
-
-