Class UnscentedEvolution
- java.lang.Object
-
- org.hipparchus.filtering.kalman.unscented.UnscentedEvolution
-
public class UnscentedEvolution extends Object
Container forunscented processevolution data.- Since:
- 2.2
- See Also:
UnscentedProcess
-
-
Constructor Summary
Constructors Constructor Description UnscentedEvolution(double currentTime, RealVector[] currentStates, RealMatrix processNoiseMatrix)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RealVector[]getCurrentStates()Get current states.doublegetCurrentTime()Get current time.RealMatrixgetProcessNoiseMatrix()Get process noise.
-
-
-
Constructor Detail
-
UnscentedEvolution
public UnscentedEvolution(double currentTime, RealVector[] currentStates, RealMatrix processNoiseMatrix)Constructor.- Parameters:
currentTime- current timecurrentStates- state vectors at current timeprocessNoiseMatrix- process noise matrix
-
-
Method Detail
-
getCurrentTime
public double getCurrentTime()
Get current time.- Returns:
- current time
-
getCurrentStates
public RealVector[] getCurrentStates()
Get current states.- Returns:
- current states
-
getProcessNoiseMatrix
public RealMatrix getProcessNoiseMatrix()
Get process noise.- Returns:
- process noise
-
-