Class InnerCholesky_FDRB
java.lang.Object
org.ejml.dense.block.decomposition.chol.InnerCholesky_FDRB
@Generated("org.ejml.dense.block.decomposition.chol.InnerCholesky_DDRB")
public class InnerCholesky_FDRB
extends Object
Performs a cholesky decomposition on an individual inner block.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
lower
(float[] T, int indexT, int n) Performs an inline lower Cholesky decomposition on an inner row-major matrix.static boolean
static boolean
upper
(float[] T, int indexT, int n) Performs an inline upper Cholesky decomposition on an inner row-major matrix.static boolean
-
Constructor Details
-
InnerCholesky_FDRB
public InnerCholesky_FDRB()
-
-
Method Details
-
upper
-
lower
-
upper
public static boolean upper(float[] T, int indexT, int n) Performs an inline upper Cholesky decomposition on an inner row-major matrix. Only the upper triangular portion of the matrix is read or written to.- Parameters:
T
- Array containing an inner row-major matrix. Modified.indexT
- First index of the inner row-major matrix.n
- Number of rows and columns of the matrix.- Returns:
- If the decomposition succeeded.
-
lower
public static boolean lower(float[] T, int indexT, int n) Performs an inline lower Cholesky decomposition on an inner row-major matrix. Only the lower triangular portion of the matrix is read or written to.- Parameters:
T
- Array containing an inner row-major matrix. Modified.indexT
- First index of the inner row-major matrix.n
- Number of rows and columns of the matrix.- Returns:
- If the decomposition succeeded.
-