RungeKuttaAlgorithmInitialize Method |
Initializes the derivative
DerivativeFunction and the working arrays used during integration.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public void Initialize(
int dimension,
DependentVariableDerivatives function
)
Public Sub Initialize (
dimension As Integer,
function As DependentVariableDerivatives
)
public:
void Initialize(
int dimension,
DependentVariableDerivatives^ function
)
member Initialize :
dimension : int *
function : DependentVariableDerivatives -> unit
Parameters
- dimension
- Type: SystemInt32
The dimension of the state. - function
- Type: AGI.Foundation.NumericalMethods.AdvancedDependentVariableDerivatives
The first order differential function representing the derivative of the dependent variables
as a function of independent variable and dependent variables.
See Also