MatrixTSolveIterative(VectorT, IIterativeSolverT, IteratorT, IPreconditionerT) 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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Vector<T> SolveIterative(
Vector<T> input,
IIterativeSolver<T> solver,
Iterator<T> iterator = null,
IPreconditioner<T> preconditioner = null
)
Parameters
- input VectorT
- The solution vector 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
VectorTThe result vector
x.
See Also