StateTransitionMatrixAddConsiderParameter Method |
Adds a consider parameter to the
StateTransitionMatrix. Consider parameters can be used when calculating covariance
for a state parameter. The transitions are not actually calculated for a consider parameter, however the values of the consider
parameter do affect those of the state parameters. For example, if you weren't interested in examining how the uncertainty of
the coefficient of drag evolved over time, but were interested in how it's uncertainty affected the uncertainty of the state
parameters, then you would add it as a consider parameter.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public void AddConsiderParameter(
IPartialDifferentiable considerParameter
)
Public Sub AddConsiderParameter (
considerParameter As IPartialDifferentiable
)
public:
void AddConsiderParameter(
IPartialDifferentiable^ considerParameter
)
member AddConsiderParameter :
considerParameter : IPartialDifferentiable -> unit
Parameters
- considerParameter
- Type: AGI.Foundation.NumericalMethods.AdvancedIPartialDifferentiable
The consider parameter to add to those tracked in the StateTransitionMatrix.
See Also