EquationSystemSolver.InitializeJacobian Property

Gets or sets whether the Jacobian should be initialized to an all zero matrix.

Definition

Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public bool InitializeJacobian { get; set; }

Property Value

Boolean

Remarks

When this property is set to true (the default), the Jacobian is initialized to a dense matrix of the proper size containing all zeros. If this property is false, the Jacobian is not initialized, and you must construct the matrix in your Jacobian function and ensure it is the proper size.

See Also