Click or drag to resize

StateTransitionMatrixAddStateParameter Method

Adds a state parameter to the StateTransitionMatrix. The state parameters added here make up the state represented by the state transition matrix. The stateDerivative of the stateParameter is needed in order to calculate the derivative of the state transition matrix so that it can be integrated.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public void AddStateParameter(
	IPartialDifferentiable stateParameter,
	IPartialDifferentiable stateDerivative
)

Parameters

stateParameter
Type: AGI.Foundation.NumericalMethods.AdvancedIPartialDifferentiable
The state parameter to add to those tracked in the StateTransitionMatrix.
stateDerivative
Type: AGI.Foundation.NumericalMethods.AdvancedIPartialDifferentiable
The derivative of the given state parameter.
See Also