Click or drag to resize

ILUTPPreconditionerInitialize Method

Initializes the preconditioner and loads the internal data structures.

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

Parameters

matrix  MatrixComplex
The Matrix upon which this preconditioner is based. Note that the method takes a general matrix type. However internally the data is stored as a sparse matrix. Therefore it is not recommended to pass a dense matrix.

Implements

IPreconditionerTInitialize(MatrixT)
Exceptions
ExceptionCondition
ArgumentNullException If matrix is .
ArgumentExceptionIf matrix is not a square matrix.
See Also