OrdinaryDifferentialEquationFunction Delegate |
A multivariate, vector function representing a set of ordinary differential equations.
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 delegate double[] OrdinaryDifferentialEquationFunction(
double independentVariable,
params double[] dependentVariables
)
Public Delegate Function OrdinaryDifferentialEquationFunction (
independentVariable As Double,
ParamArray dependentVariables As Double()
) As Double()
public delegate array<double>^ OrdinaryDifferentialEquationFunction(
double independentVariable,
... array<double>^ dependentVariables
)
type OrdinaryDifferentialEquationFunction =
delegate of
independentVariable : float *
dependentVariables : float[] -> float[]
Parameters
- independentVariable
- Type: SystemDouble
The independent variable of the differential equations. - dependentVariables
- Type: SystemDouble
The dependent variables of the differential equations
and their derivatives up to the highest order derivative appearing in the equations.
Return Value
Type:
Double
The highest order derivative appearing in the differential equations for each of the
dependent variables.
See Also