Click or drag to resize

UnitPreconditionerTApproximate Method

Approximates the solution to the matrix equation Ax = b.

Namespace: Altaxo.Calc.LinearAlgebra.Solvers
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Approximate(
	Vector<T> rhs,
	Vector<T> lhs
)

Parameters

rhs  VectorT
The right hand side vector.
lhs  VectorT
The left hand side vector. Also known as the result vector.

Implements

IPreconditionerTApproximate(VectorT, VectorT)
Exceptions
ExceptionCondition
ArgumentException

If rhs and lhs do not have the same size.

- or -

If the size of rhs is different the number of rows of the coefficient matrix.

See Also