MatrixTSolveIterative(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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Matrix<T> SolveIterative(
Matrix<T> input,
IIterativeSolver<T> solver,
params IIterationStopCriterion<T>[] stopCriteria
)
Parameters
- input MatrixT
- The solution matrix B.
- solver IIterativeSolverT
- The iterative solver to use.
- stopCriteria IIterationStopCriterionT
- Criteria to control when to stop iterating.
Return Value
MatrixTThe result matrix
X.
See Also