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