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