CholeskyDecompositionSolve Method |
Computes the solution vector that, when multiplied by the original matrix, produces the given left-hand side vector.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public ColumnVector Solve(
IReadOnlyList<double> rhs
)
Public Function Solve (
rhs As IReadOnlyList(Of Double)
) As ColumnVector
public:
ColumnVector^ Solve(
IReadOnlyList<double>^ rhs
)
member Solve :
rhs : IReadOnlyList<float> -> ColumnVector
Parameters
- rhs
- Type: System.Collections.GenericIReadOnlyListDouble
The right-hand-side vector.
Return Value
Type:
ColumnVectorThe left-hand-side (solution) vector.
See Also