DifferentialJacobianFunction Delegate

Represents a function that computes the Jacobian for a system of ordinary differential equations.

Definition

Namespace: Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public delegate Matrix<double> DifferentialJacobianFunction(
	double t,
	Vector<double> y,
	Vector<double> dy,
	Matrix<double> J
)

Parameters

t  Double
The time value.
y  Vector<Double>
A vector containing the current value of the dependent variables.
dy  Vector<Double>
A vector containing the current value of the derivatives of the dependent variables.
J  Matrix<Double>
A matrix that is to hold the Jacobian of the system.

Return Value

Matrix<Double>

See Also