Package org.ejml.dense.row.decompose
Class UtilDecompositons_ZDRM
- java.lang.Object
-
- org.ejml.dense.row.decompose.UtilDecompositons_ZDRM
-
public class UtilDecompositons_ZDRM extends java.lang.ObjectHelper functions for generic decompsotions.
-
-
Constructor Summary
Constructors Constructor Description UtilDecompositons_ZDRM()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.ejml.data.ZMatrixRMajcheckIdentity(org.ejml.data.ZMatrixRMaj A, int numRows, int numCols)static org.ejml.data.ZMatrixRMajcheckZeros(org.ejml.data.ZMatrixRMaj A, int numRows, int numCols)static org.ejml.data.ZMatrixRMajcheckZerosLT(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(org.ejml.data.ZMatrixRMaj A, int numRows, int numCols)Creates a zeros matrix only if A does not already exist.
-
-
-
Method Detail
-
checkIdentity
public static org.ejml.data.ZMatrixRMaj checkIdentity(org.ejml.data.ZMatrixRMaj A, int numRows, int numCols)
-
checkZeros
public static org.ejml.data.ZMatrixRMaj checkZeros(org.ejml.data.ZMatrixRMaj A, int numRows, int numCols)
-
checkZerosLT
public static org.ejml.data.ZMatrixRMaj checkZerosLT(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(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.
-
-