Click or drag to resize

MatrixTSolveIterative(VectorT, IIterativeSolverT, IPreconditionerT, IIterationStopCriterionT) Method

Solves the matrix equation Ax = b, where A is the coefficient matrix (this matrix), b is the solution vector and x is the unknown vector.

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

Parameters

input  VectorT
The solution vector 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

VectorT
The result vector x.
See Also