Package gov.nih.mipav.model.algorithms
Class libdt.CovMatrix
- java.lang.Object
-
- gov.nih.mipav.model.algorithms.libdt.CovMatrix
-
- Enclosing class:
- libdt
public class libdt.CovMatrix extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description libdt.cov_type
covopt
< storage for the covariance matrix. full matrix is [n x n]; diagonal matrix is [n x 1]; iid matrix is [1 x 1].libdt.Mat
mtx
< dimension of the (square) covariance matrix.int
n
libdt.cov_reg_type
regopt
< type of covariance matrixdouble
regval
< type of regularization to be used
-
Constructor Summary
Constructors Constructor Description CovMatrix()
cache the matrix square-root of the covariance matrix.CovMatrix(int n, libdt.cov_type covopt)
-
-
-
Field Detail
-
n
public int n
-
mtx
public libdt.Mat mtx
< dimension of the (square) covariance matrix.
-
covopt
public libdt.cov_type covopt
< storage for the covariance matrix. full matrix is [n x n]; diagonal matrix is [n x 1]; iid matrix is [1 x 1].
-
regopt
public libdt.cov_reg_type regopt
< type of covariance matrix
-
regval
public double regval
< type of regularization to be used
-
-
Constructor Detail
-
CovMatrix
public CovMatrix()
cache the matrix square-root of the covariance matrix.
-
CovMatrix
public CovMatrix(int n, libdt.cov_type covopt)
-
-