SparseJacobianMatrixEvaluatorEvaluateJacobian Method |
Evaluates the jacobian matrix.
Namespace: Altaxo.Calc.OdeAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void EvaluateJacobian(
double x,
double[] y,
ref Matrix<double> jac
)
Parameters
- x Double
- The value of the independent variable (usually named x or t).
- y Double
- The array of y values.
- jac MatrixDouble
- At return, contains the matrix with jacobian values. If you provide null as this parameter, a new matrix is allocated.
See Also