Click or drag to resize

MILU0Preconditioner.Initialize Method

Initializes the preconditioner and loads the internal data structures.

Namespace: Altaxo.Calc.LinearAlgebra.Single.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public void Initialize(
	Matrix<float> matrix
)

Parameters

matrix  Matrix<Single>
The matrix upon which the preconditioner is based.

Implements

IPreconditioner<T>.Initialize(Matrix<T>)
Exceptions
ExceptionCondition
ArgumentNullExceptionIf matrix is null.
ArgumentExceptionIf matrix is not a square or is not an instance of SparseCompressedRowMatrixStorage.
See Also