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.3179.0 (4.8.3179.0)
Syntax public void Solve(
Matrix<float> matrix,
Vector<float> input,
Vector<float> result,
Iterator<float> iterator,
IPreconditioner<float> preconditioner
)
Parameters
- matrix MatrixSingle
- The coefficient matrix, A.
- input VectorSingle
- The solution vector, b
- result VectorSingle
- The result vector, x
- iterator IteratorSingle
- The iterator to use to control when to stop iterating.
- preconditioner IPreconditionerSingle
- The preconditioner to use for approximations.
Implements
IIterativeSolverTSolve(MatrixT, VectorT, VectorT, IteratorT, IPreconditionerT)See Also