Differential Jacobian Function Delegate
Represents a function that computes the Jacobian for a system of
ordinary differential equations.
Definition
Namespace: Numerics.NET.Calculus.OrdinaryDifferentialEquations
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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.