Click or drag to resize

MatrixTSolveIterative(MatrixT, IIterativeSolverT, IPreconditionerT, IIterationStopCriterionT) Method

Solves the matrix equation AX = B, where A is the coefficient matrix (this matrix), B is the solution matrix and X is the unknown matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Matrix<T> SolveIterative(
	Matrix<T> input,
	IIterativeSolver<T> solver,
	IPreconditioner<T> preconditioner,
	params IIterationStopCriterion<T>[] stopCriteria
)

Parameters

input  MatrixT
The solution matrix B.
solver  IIterativeSolverT
The iterative solver to use.
preconditioner  IPreconditionerT
The preconditioner to use for approximations.
stopCriteria  IIterationStopCriterionT
Criteria to control when to stop iterating.

Return Value

MatrixT
The result matrix X.
See Also