Click or drag to resize

MatrixTSolveIterative(MatrixT, IIterativeSolverT, IteratorT, IPreconditionerT) 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,
	Iterator<T> iterator = null,
	IPreconditioner<T> preconditioner = null
)

Parameters

input  MatrixT
The solution matrix B.
solver  IIterativeSolverT
The iterative solver to use.
iterator  IteratorT  (Optional)
The iterator to use to control when to stop iterating.
preconditioner  IPreconditionerT  (Optional)
The preconditioner to use for approximations.

Return Value

MatrixT
The result matrix X.
See Also