Gaussian |
public class GaussianEliminationSolver : ILinearEquationSolver<double>
The GaussianEliminationSolver type exposes the following members.
Name | Description | |
---|---|---|
GaussianEliminationSolver | Initializes a new instance of the GaussianEliminationSolver class |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode | Serves as the default hash function. (Inherited from Object) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
Solve(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. | |
SolveVectorT(IROMatrixDouble, IReadOnlyListDouble, FuncInt32, VectorT) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. | |
SolveDestructive(IMatrixDouble, IVectorDouble, IVectorDouble) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. Attention! Both matrix a and vector b are destroyed (changed). | |
SolveDestructive(IMatrixDouble, 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(MatrixWrapperStructForLeftSpineJaggedArrayDouble, 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). | |
SolveDestructiveVectorT(IMatrixDouble, IVectorDouble, FuncInt32, VectorT) | Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting. | |
SolveDestructiveBanded | Solves a system of linear equations Ax = b with a band matrix A, using Gaussian elimination with partial pivoting. Attention! Both matrix A and vector b are destroyed (changed). | |
SolvePentaDiagonal(IROMatrixDouble, IReadOnlyListDouble, Double) | Solves a system where the matrix a is pentadiagonal, i.e. has two lower and two upper bands. The method is non-destructive, i.e. both matrix m and vector a are not changed. | |
SolvePentaDiagonal(IROMatrixDouble, IReadOnlyListDouble, Double, Object) | Solves a system where the matrix a is five diagonal, i.e. has two lower and two upper bands. The method is non-destructive, i.e. both matrix m and vector a are not changed. | |
SolveTriDiagonal(IMatrixDouble, Double, Double) | Solves a system where the matrix a is tri diagonal, i.e. has one lower and one upper band. The method is non-destructive, i.e. both matrix m and vector a are not changed. | |
SolveTriDiagonal(IMatrixDouble, Double, Double, Object) | Solves a system where the matrix a is tri diagonal, i.e. has one lower and one upper band. The method is non-destructive, i.e. both matrix m and vector a are not changed. | |
ToString | Returns a string that represents the current object. (Inherited from Object) |