est_up: Title

Description Usage Arguments Value Examples

Description

Title

Usage

1
est_up(E, k = 5)

Arguments

E

the observation matrix such that each of its row has a block structure correlation matrix Sigma wich has a low rank once its diagonal is removed.

k

the rank of the correlation matrix of E once its diagonal has been removed

Value

an approximation of the correlation matrix of E with its diagonal removed

Examples

1
2
3
4
5
6
7
n <- 30
q <- 100
Sigma <- Simu_Sigma(q = q, diag = FALSE, equal = TRUE)
Matrix::image(Sigma)
E <- matrix(rnorm(n * q), ncol = q) %*% chol(as.matrix(Sigma))
k <- 5
v_up <- est_up(E, k = k)

BlockCov documentation built on May 2, 2019, 9:20 a.m.