GaussianEliminationSolverSolveDestructive(IMatrixDouble, 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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void SolveDestructive(
IMatrix<double> A,
double[] b,
double[] x
)
Parameters
- A IMatrixDouble
- 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