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.Double.SolversAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void Solve(
Matrix<double> matrix,
Vector<double> input,
Vector<double> result,
Iterator<double> iterator,
IPreconditioner<double> preconditioner
)
Parameters
- matrix MatrixDouble
- The coefficient matrix, A.
- input VectorDouble
- The solution vector, b
- result VectorDouble
- The result vector, x
- iterator IteratorDouble
- The iterator to use to control when to stop iterating.
- preconditioner IPreconditionerDouble
- The preconditioner to use for approximations.
Implements
IIterativeSolverTSolve(MatrixT, VectorT, VectorT, IteratorT, IPreconditionerT)See Also