TridiagonalLUDecompositionSolve Method |
Solves a tri-diagonal system of linear equations.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public ColumnVector Solve(
IList<double> rhs
)
Public Function Solve (
rhs As IList(Of Double)
) As ColumnVector
public:
ColumnVector^ Solve(
IList<double>^ rhs
)
member Solve :
rhs : IList<float> -> ColumnVector
Parameters
- rhs
- Type: System.Collections.GenericIListDouble
The right-hand side vector b.
Return Value
Type:
ColumnVectorA vector x which satisfies Ax = b.
See Also