Class NonLinearEvolution
- java.lang.Object
-
- org.hipparchus.filtering.kalman.extended.NonLinearEvolution
-
public class NonLinearEvolution extends Object
Container fornon-linear processevolution data.- Since:
- 1.3
- See Also:
NonLinearProcess
-
-
Constructor Summary
Constructors Constructor Description NonLinearEvolution(double currentTime, RealVector currentState, RealMatrix stateTransitionMatrix, RealMatrix processNoiseMatrix, RealMatrix measurementJacobian)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RealVectorgetCurrentState()Get current state.doublegetCurrentTime()Get current time.RealMatrixgetMeasurementJacobian()Get measurement Jacobian.RealMatrixgetProcessNoiseMatrix()Get process noise.RealMatrixgetStateTransitionMatrix()Get state transition matrix between previous and current state.
-
-
-
Constructor Detail
-
NonLinearEvolution
public NonLinearEvolution(double currentTime, RealVector currentState, RealMatrix stateTransitionMatrix, RealMatrix processNoiseMatrix, RealMatrix measurementJacobian)Simple constructor.- Parameters:
currentTime- current timecurrentState- state vector at current timestateTransitionMatrix- state transition matrix between previous and current stateprocessNoiseMatrix- process noisemeasurementJacobian- Jacobian of the measurement with respect to the state (may be null if measurement should be ignored)
-
-
Method Detail
-
getCurrentTime
public double getCurrentTime()
Get current time.- Returns:
- current time
-
getCurrentState
public RealVector getCurrentState()
Get current state.- Returns:
- current state
-
getStateTransitionMatrix
public RealMatrix getStateTransitionMatrix()
Get state transition matrix between previous and current state.- Returns:
- state transition matrix between previous and current state
-
getProcessNoiseMatrix
public RealMatrix getProcessNoiseMatrix()
Get process noise.- Returns:
- process noise
-
getMeasurementJacobian
public RealMatrix getMeasurementJacobian()
Get measurement Jacobian.- Returns:
- Jacobian of the measurement with respect to the state (may be null if measurement should be ignored)
-
-