OdeIntegrator.DifferentialFunction 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#
public DifferentialFunction DifferentialFunction { get; set; }

Property Value

DifferentialFunction
A 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.

See Also