PropagationStateElementConverterConvertStateT Method  | 
 
            Convert the raw state into this instance's 
Type
            and its derivatives.
            
 
    Namespace: 
   AGI.Foundation.Propagators.Advanced
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract Motion<T> ConvertState<T>(
	double[] overallState
)
Public MustOverride Function ConvertState(Of T) ( 
	overallState As Double()
) As Motion(Of T)
public:
generic<typename T>
virtual Motion<T> ConvertState(
	array<double>^ overallState
) abstract
abstract ConvertState : 
        overallState : float[] -> Motion<'T> 
Parameters
- overallState
 - Type: SystemDouble
The raw state to convert. 
Type Parameters
- T
 - The TypeOfOutput produced by this instance.
 
Return Value
Type: 
MotionTThe value and its derivatives corresponding to the state.
See Also