Click or drag to resize

GaussianEliminationSolver Class

Provides implementation of Gaussian elimination with partial pivoting
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.LinearAlgebraGaussianEliminationSolver

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class GaussianEliminationSolver : ILinearEquationSolver<double>

The GaussianEliminationSolver type exposes the following members.

Constructors
 NameDescription
Public methodGaussianEliminationSolverInitializes a new instance of the GaussianEliminationSolver class
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodSolve(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble)Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Public methodSolveVectorT(IROMatrixDouble, IReadOnlyListDouble, FuncInt32, VectorT)Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Public methodSolveDestructive(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).
Public methodSolveDestructive(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).
Public methodSolveDestructive(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).
Public methodSolveDestructiveVectorT(IMatrixDouble, IVectorDouble, FuncInt32, VectorT)Solves system of linear equations Ax = b using Gaussian elimination with partial pivoting.
Public methodSolveDestructiveBandedSolves 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).
Public methodStatic memberSolvePentaDiagonal(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.
Public methodStatic memberSolvePentaDiagonal(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.
Public methodStatic memberSolveTriDiagonal(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.
Public methodStatic memberSolveTriDiagonal(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.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also