Package org.ejml.dense.row.decomposition
Class UtilDecompositons_DDRM
java.lang.Object
org.ejml.dense.row.decomposition.UtilDecompositons_DDRM
public class UtilDecompositons_DDRM
extends java.lang.Object
Helper functions for generic decompsotions.
-
Constructor Summary
Constructors Constructor Description UtilDecompositons_DDRM() -
Method Summary
Modifier and Type Method Description static org.ejml.data.DMatrixRMajcheckZerosLT(@Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols)Creates a zeros matrix only if A does not already exist.static org.ejml.data.DMatrixRMajcheckZerosUT(@Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols)Creates a zeros matrix only if A does not already exist.static org.ejml.data.DMatrixRMajensureIdentity(@Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols)static org.ejml.data.DMatrixRMajensureZeros(@Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols)
-
Constructor Details
-
UtilDecompositons_DDRM
public UtilDecompositons_DDRM()
-
-
Method Details
-
ensureIdentity
public static org.ejml.data.DMatrixRMaj ensureIdentity(@Nullable @Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols) -
ensureZeros
public static org.ejml.data.DMatrixRMaj ensureZeros(@Nullable @Nullable org.ejml.data.DMatrixRMaj A, int numRows, int numCols) -
checkZerosLT
public static org.ejml.data.DMatrixRMaj checkZerosLT(@Nullable @Nullable org.ejml.data.DMatrixRMaj 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.DMatrixRMaj checkZerosUT(@Nullable @Nullable org.ejml.data.DMatrixRMaj 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.
-