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)
Syntax The LinearEquations type exposes the following members.
Constructors | Name | Description |
---|
| LinearEquations |
Initializes a new instance of the LinearEquations class.
|
TopMethods | 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
|
TopFields Extension Methods See Also