Package org.ejml.dense.row.decompose
Class UtilDecompositons_CDRM
java.lang.Object
org.ejml.dense.row.decompose.UtilDecompositons_CDRM
@Generated("org.ejml.dense.row.decompose.UtilDecompositons_ZDRM") public class UtilDecompositons_CDRM extends Object
Helper functions for generic decompsotions.
-
Constructor Summary
Constructors Constructor Description UtilDecompositons_CDRM() -
Method Summary
Modifier and Type Method Description static org.ejml.data.CMatrixRMajcheckIdentity(@Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols)static org.ejml.data.CMatrixRMajcheckZeros(@Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols)static org.ejml.data.CMatrixRMajcheckZerosLT(@Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols)Creates a zeros matrix only if A does not already exist.static org.ejml.data.CMatrixRMajcheckZerosUT(@Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols)Creates a zeros matrix only if A does not already exist.
-
Constructor Details
-
UtilDecompositons_CDRM
public UtilDecompositons_CDRM()
-
-
Method Details
-
checkIdentity
public static org.ejml.data.CMatrixRMaj checkIdentity(@Nullable @Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols) -
checkZeros
public static org.ejml.data.CMatrixRMaj checkZeros(@Nullable @Nullable org.ejml.data.CMatrixRMaj A, int numRows, int numCols) -
checkZerosLT
public static org.ejml.data.CMatrixRMaj checkZerosLT(@Nullable @Nullable org.ejml.data.CMatrixRMaj 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.CMatrixRMaj checkZerosUT(@Nullable @Nullable org.ejml.data.CMatrixRMaj 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.
-