Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public delegate double[] OrdinaryDifferentialEquationFunction(
	double independentVariable,
	params double[] dependentVariables
)

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