Click or drag to resize

LUTSolve(VectorT, VectorT) Method

Solves a system of linear equations, Ax = b, with A LU factorized.

Namespace: Altaxo.Calc.LinearAlgebra.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public abstract void Solve(
	Vector<T> input,
	Vector<T> result
)

Parameters

input  VectorT
The right hand side vector, b.
result  VectorT
The left hand side MatrixT, x.

Implements

ISolverTSolve(VectorT, VectorT)
See Also