LinearEquationsSolve(TridiagonalMatrix, Matrix) Method |
Computes the solution to a real system of linear equations
A * X = B, where A is a tridiagonal matrix.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Matrix Solve(
TridiagonalMatrix A,
Matrix B
)
Public Function Solve (
A As TridiagonalMatrix,
B As Matrix
) As Matrix
Request Example
View SourceParameters
- A TridiagonalMatrix
- The tridiagonal matrix.
- B Matrix
- The matrix containing the right-hand side of the linear system.
Return Value
MatrixA matrix containing the solution to the linear system of equations.
See Also