NumericalIntegratorIntegrate Method (Double) | 
 
            Perform an integration step moving the independent and dependent variables from their
            initial (the final values of the previous step) to their new final values.
            
            When overriding this method, StartNextStep should be called prior to
            integration.  Also note that the CurrentStepSize
            property should be unaffected by the stepSize parameter.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic virtual void Integrate(
	double stepSize
)
Public Overridable Sub Integrate ( 
	stepSize As Double
)
public:
virtual void Integrate(
	double stepSize
)
abstract Integrate : 
        stepSize : float -> unit 
override Integrate : 
        stepSize : float -> unit Parameters
- stepSize
 - Type: SystemDouble
The increment made to the InitialIndependentVariableValue
            to transition to the new FinalIndependentVariableValue. 
See Also