Click or drag to resize

StateTransitionMatrixPopulateCovarianceCollection Method

Transforms an initial covariance matrix forward in time using the given collection of state transition matrices.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static DateMotionCollection<Matrix> PopulateCovarianceCollection(
	Matrix initialCovariance,
	DateMotionCollection<Matrix> stateTransitionMatrices,
	TransitionType transitionType
)

Parameters

initialCovariance
Type: AGI.Foundation.CoordinatesMatrix
The initial covariance matrix that corresponds with the first time step in the collection.
stateTransitionMatrices
Type: AGI.FoundationDateMotionCollectionMatrix
The DateMotionCollectionT of the state transition matrices and their corresponding times to be used to move the covariance values forward in time.
transitionType
Type: AGI.Foundation.PropagatorsTransitionType
Indicates type of the given state transition matrices. See also TransitionType.

Return Value

Type: DateMotionCollectionMatrix
A new date motion collection of covariances which corresponds to the state transition matrices.
See Also