Ode Integrator.Differential Function Property
Gets or sets a function that should be integrated.
Definition
Namespace: Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A DifferentialFunction delegate.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public DifferentialFunction DifferentialFunction { get; set; }
Property Value
DifferentialFunctionA DifferentialFunction delegate.
Remarks
Use this property to define the system of differential equations. The delegate takes three arguments. The first is the current time. The second is a vector that contains the current value. The third is a vector that on output contains the first derivative. The third argument is also returned by the function.