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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.ejml.data.ZMatrixRMajcheckIdentity(@Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) static org.ejml.data.ZMatrixRMajcheckZeros(@Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) static org.ejml.data.ZMatrixRMajcheckZerosLT(@Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) Creates a zeros matrix only if A does not already exist.static org.ejml.data.ZMatrixRMajcheckZerosUT(@Nullable org.ejml.data.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 org.ejml.data.ZMatrixRMaj checkIdentity(@Nullable @Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) -
checkZeros
public static org.ejml.data.ZMatrixRMaj checkZeros(@Nullable @Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) -
checkZerosLT
public static org.ejml.data.ZMatrixRMaj checkZerosLT(@Nullable @Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) 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
public static org.ejml.data.ZMatrixRMaj checkZerosUT(@Nullable @Nullable org.ejml.data.ZMatrixRMaj A, int numRows, int numCols) Creates a zeros matrix only if A does not already exist. If it does exist it will fill the upper triangular portion with zeros.
-