Gets or sets a function that should be integrated.
Namespace:
Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DifferentialFunction DifferentialFunction { get; set; }
Public Property DifferentialFunction As DifferentialFunction
Get
Set
public:
property DifferentialFunction^ DifferentialFunction {
DifferentialFunction^ get ();
void set (DifferentialFunction^ value);
}
member DifferentialFunction : DifferentialFunction with get, set
Property Value
Type:
DifferentialFunctionA
DifferentialFunction delegate.
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.
Reference