Click or drag to resize

GaussianEliminationSolverSolveDestructive(MatrixWrapperStructForLeftSpineJaggedArrayDouble, Double, Double) Method

Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. Attention! Both matrix A and vector b are destroyed (changed).

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void SolveDestructive(
	MatrixWrapperStructForLeftSpineJaggedArray<double> A,
	double[] b,
	double[] x
)

Parameters

A  MatrixWrapperStructForLeftSpineJaggedArrayDouble
Elements of matrix 'A'. This array is modified!
b  Double
Right part 'b'. This array is also modified!
x  Double
Vector to store the result, i.e. the solution to the problem a x = b.
See Also