Computes the solution to a system of linear equations.
Inheritance Hierarchy Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxThe LinearEquations type exposes the following members.
Constructors | Name | Description |
---|
 | LinearEquations |
Initializes a new instance of the LinearEquations class.
|
Top
Methods | Name | Description |
---|
 | CheckDimensions(BaseMatrix, BaseMatrix) | |
 | CheckDimensions(BaseMatrix, Vector) | |
 | Solve(BandMatrix, Matrix) |
Computes the solution to a real system of linear equations
A * X = B, where A is a band matrix.
|
 | Solve(BandMatrix, Vector) |
Computes the solution to a real system of linear equations
A * X = B, where A is a band matrix.
|
 | Solve(Double, Double) |
Computes the solution to a real system of linear equations A * X = B, where A is a general matrix.
|
 | Solve(Matrix, Matrix) |
Computes the solution to a real system of linear equations A * X = B, where A is a general matrix.
|
 | Solve(Matrix, Vector) |
Computes the solution to a real system of linear equations A * X = B, where A is a general matrix.
|
 | Solve(TridiagonalMatrix, Matrix) |
Computes the solution to a real system of linear equations
A * X = B, where A is a tridiagonal matrix.
|
 | SolveInplace |
In place, Computes the solution to a real system of linear equations A * X = B
|
Top
Fields
Extension Methods
See Also