Package org.orekit.estimation.sequential
Class PhysicalEstimatedState
java.lang.Object
org.orekit.estimation.sequential.PhysicalEstimatedState
- All Implemented Interfaces:
TimeStamped
Container for smoothed states (time, mean and covariance) generated by an
RtsSmoother.
The order of the parameters in the state and covariance are the same as produced by the underlying sequential (Kalman or unscented) estimator.
- Since:
- 13.0
- Author:
- Mark Rutten
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPhysicalEstimatedState(AbsoluteDate date, RealVector state, RealMatrix covarianceMatrix) Constructor. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
Constructor Details
-
PhysicalEstimatedState
Constructor.- Parameters:
date- datestate- mean statecovarianceMatrix- covariance matrix
-
-
Method Details
-
getDate
Get the date.- Specified by:
getDatein interfaceTimeStamped- Returns:
- date attached to the object
-
getState
Get the state in "physical" (not normalised) units.- Returns:
- the state mean
-
getCovarianceMatrix
Get the covariance matrix in "physical" (not normalised) units.- Returns:
- the state covariance matrix
-