RungeKuttaCashKarp45Integrator Constructor (DependentVariableDerivatives, Double) | 
 
            Initializes a new instance based on the given system of equations and initial step size.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic RungeKuttaCashKarp45Integrator(
	DependentVariableDerivatives system,
	double initialStepSize
)
Public Sub New ( 
	system As DependentVariableDerivatives,
	initialStepSize As Double
)
public:
RungeKuttaCashKarp45Integrator(
	DependentVariableDerivatives^ system, 
	double initialStepSize
)
new : 
        system : DependentVariableDerivatives * 
        initialStepSize : float -> RungeKuttaCashKarp45IntegratorParameters
- system
 - Type: AGI.Foundation.NumericalMethods.AdvancedDependentVariableDerivatives
The system of equations that define the derivatives for the dependent variables. - initialStepSize
 - Type: SystemDouble
The initial size of the integration step. 
See Also