Click or drag to resize

BiCgStabSolve 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.Double.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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