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