|
JaggedCholeskyDecompositionFInverseDiagonal Method (Single, Boolean)
|
Computes the diagonal of the inverse of the decomposed matrix.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public float[] InverseDiagonal(
float[] result,
bool destroy = false
)
Public Function InverseDiagonal (
result As Single(),
Optional destroy As Boolean = false
) As Single()
Request Example
View SourceParameters
- result
- Type: SystemSingle
The array to hold the result of the
computation. Should be of same length as the the diagonal
of the original matrix. - destroy (Optional)
- Type: SystemBoolean
True to conserve memory by reusing the
same space used to hold the decomposition, thus destroying
it in the process. Pass false otherwise.
Return Value
Type:
SingleSee Also