Click or drag to resize

IIterativeSolverTSolve Method

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.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void Solve(
	Matrix<T> matrix,
	Vector<T> input,
	Vector<T> result,
	Iterator<T> iterator,
	IPreconditioner<T> preconditioner
)

Parameters

matrix  MatrixT
The coefficient matrix, A.
input  VectorT
The solution vector, b
result  VectorT
The result vector, x
iterator  IteratorT
The iterator to use to control when to stop iterating.
preconditioner  IPreconditionerT
The preconditioner to use for approximations.
See Also