Package org.ejml.dense.row.decompose
Class UtilDecompositons_ZDRM
java.lang.Object
org.ejml.dense.row.decompose.UtilDecompositons_ZDRM
Helper functions for generic decompsotions.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ZMatrixRMaj
checkIdentity
(@Nullable ZMatrixRMaj A, int numRows, int numCols) static ZMatrixRMaj
checkZeros
(@Nullable ZMatrixRMaj A, int numRows, int numCols) static ZMatrixRMaj
checkZerosLT
(@Nullable ZMatrixRMaj A, int numRows, int numCols) Creates a zeros matrix only if A does not already exist.static ZMatrixRMaj
checkZerosUT
(@Nullable ZMatrixRMaj A, int numRows, int numCols) Creates a zeros matrix only if A does not already exist.
-
Constructor Details
-
UtilDecompositons_ZDRM
public UtilDecompositons_ZDRM()
-
-
Method Details
-
checkIdentity
public static ZMatrixRMaj checkIdentity(@Nullable @Nullable ZMatrixRMaj A, int numRows, int numCols) -
checkZeros
-
checkZerosLT
Creates a zeros matrix only if A does not already exist. If it does exist it will fill the lower triangular portion with zeros. -
checkZerosUT
Creates a zeros matrix only if A does not already exist. If it does exist it will fill the upper triangular portion with zeros.
-