Ode Integrator.Differential Function Property
Gets or sets a function that should be integrated.
Definition
Namespace: Numerics.NET.Calculus.OrdinaryDifferentialEquations
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A DifferentialFunction delegate.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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.