Interface CholeskyLDLDecomposition_F32<MatrixType extends Matrix>
- All Superinterfaces:
CholeskyLDLDecomposition<MatrixType>
,DecompositionInterface<MatrixType>
- All Known Implementing Classes:
CholeskyDecompositionLDL_FDRM
public interface CholeskyLDLDecomposition_F32<MatrixType extends Matrix>
extends CholeskyLDLDecomposition<MatrixType>
Implementation of CholeskyDecomposition
for 32-bit floats.
-
Method Summary
Modifier and TypeMethodDescriptionfloat[]
Returns the elements in the diagonal matrixMethods inherited from interface org.ejml.interfaces.decomposition.CholeskyLDLDecomposition
getD, getL
Methods inherited from interface org.ejml.interfaces.decomposition.DecompositionInterface
decompose, inputModified
-
Method Details
-
getDiagonal
float[] getDiagonal()Returns the elements in the diagonal matrix- Returns:
- array with diagonal elements. Array might be larger than the number of elements.
-