|
SingularValueDecompositionDSolveForDiagonal Method
|
Solves a linear equation system of the form AX = B.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public decimal[,] SolveForDiagonal(
decimal[] value
)
Public Function SolveForDiagonal (
value As Decimal()
) As Decimal(,)
Request Example
View SourceParameters
- value
- Type: SystemDecimal
Parameter B from the equation AX = B.
Return Value
Type:
DecimalThe solution X from equation AX = B.
See Also