GaussSolveCore(Double, Double) Method |
Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting
Namespace: Altaxo.Calc.Ode.ObsoleteAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double[] SolveCore(
double[][] a,
double[] b
)
Parameters
- a Double
- Elements of matrix 'A'. This array is modified during solution!
- b Double
- Right part 'b'. This array is also modified during solution!
Return Value
DoubleSolution of system 'x'
See Also