IterativeSparseSolver<T>.InitialGuess Property

Gets or sets the solution of the system of equations.

Definition

Namespace: Numerics.NET.LinearAlgebra.IterativeSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Vector<T> InitialGuess { get; set; }

Property Value

Vector<T>

Remarks

Before the algorithm is run, this property may be set to an appropriate initial guess. After the algorithm has run, this property returns the best estimate of the solution.

See Also