Solves the matrix equation Ax = b, where A is the coefficient matrix, b is the
solution vector and x is the unknown vector.
Namespace: Altaxo.Calc.LinearAlgebra.Single.SolversAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic void Solve(
Matrix<float> matrix,
Vector<float> input,
Vector<float> result,
Iterator<float> iterator,
IPreconditioner<float> preconditioner
)
Parameters
- matrix Matrix<Single>
- The coefficient matrix, A.
- input Vector<Single>
- The solution vector, b
- result Vector<Single>
- The result vector, x
- iterator Iterator<Single>
- The iterator to use to control when to stop iterating.
- preconditioner IPreconditioner<Single>
- The preconditioner to use for approximations.
Implements
IIterativeSolver<T>.Solve(Matrix<T>, Vector<T>, Vector<T>, Iterator<T>, IPreconditioner<T>)
See Also