# NOT RUN {
## Obtain some (high-dimensional) data
p = 25
n = 10
set.seed(333)
X = matrix(rnorm(n*p), nrow = n, ncol = p)
colnames(X)[1:25] = letters[1:25]
## Obtain ML estimate covariance matrix
Cx <- covML(X)
## Obtain correlation matrix
Cx <- covML(X, cor = TRUE)
# }
Run the code above in your browser using DataLab