Click or drag to resize

GaussianEliminationSolverSolve(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble) Method

Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Solve(
	IROMatrix<double> A,
	IReadOnlyList<double> b,
	IVector<double> x
)

Parameters

A  IROMatrixDouble
Elements of matrix 'A'. This array is modified during solution!
b  IReadOnlyListDouble
Right part 'b'. This array is also modified during solution!
x  IVectorDouble
Vector to store the result, i.e. the solution to the problem a x = b.

Implements

ILinearEquationSolverTSolve(IROMatrixT, IReadOnlyListT, IVectorT)
See Also