OrdinaryDifferentialEquationSystem Constructor |
Initializes a system of ordinary differential equations from the provided information.
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 OrdinaryDifferentialEquationSystem(
OrdinaryDifferentialEquationFunction function,
params int[] orders
)
Public Sub New (
function As OrdinaryDifferentialEquationFunction,
ParamArray orders As Integer()
)
public:
OrdinaryDifferentialEquationSystem(
OrdinaryDifferentialEquationFunction^ function,
... array<int>^ orders
)
new :
function : OrdinaryDifferentialEquationFunction *
orders : int[] -> OrdinaryDifferentialEquationSystem
Parameters
- function
- Type: AGI.Foundation.NumericalMethods.AdvancedOrdinaryDifferentialEquationFunction
The multivariate, vector function which produces the highest order derivative
for each of the dependent variables in the set of equations. - orders
- Type: SystemInt32
The order of the highest derivative for each of the dependent variables.
See Also