Click or drag to resize

MatrixTTrySolveIterative(MatrixT, MatrixT, IIterativeSolverT, 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.3572.0 (4.8.3572.0)
Syntax
C#
public IterationStatus TrySolveIterative(
	Matrix<T> input,
	Matrix<T> result,
	IIterativeSolver<T> solver,
	params IIterationStopCriterion<T>[] stopCriteria
)

Parameters

input  MatrixT
The solution matrix B.
result  MatrixT
The result matrix X
solver  IIterativeSolverT
The iterative solver to use.
stopCriteria  IIterationStopCriterionT
Criteria to control when to stop iterating.

Return Value

IterationStatus
The final iteration status.
See Also