| Name | Description |
---|
 | SolveDestructive(IMatrix<Double>, IVector<Double>, IVector<Double>) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Attention! Both matrix a and vector b are destroyed (changed). |
 | SolveDestructive(IMatrix<Double>, Double[], Double[]) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Attention! Both matrix A and vector b are destroyed (changed). |
 | SolveDestructive(MatrixWrapperStructForLeftSpineJaggedArray<Double>, Double[], Double[]) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Attention! Both matrix A and vector b are destroyed (changed). |
 | SolveDestructive<VectorT>(IMatrix<Double>, IVector<Double>, Func<Int32, VectorT>) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. |