Processing math: 100%

This function generates a p×p intraclass covariance matrix with correlation rho. The variance sigma2 is constant for each feature and defaulted to 1.

cov_intraclass(p, rho, sigma2 = 1)

Arguments

p

the size of the covariance matrix

rho

the value of the off-diagonal elements

sigma2

the variance of each feature

Value

intraclass covariance matrix

Details

The intraclass covariance matrix is defined as: σ2(ρJp+(1ρ)Ip), where Jp is the p×p matrix of ones and Ip is the p×p identity matrix.

By default, with sigma2 = 1, the diagonal elements of the intraclass covariance matrix are all 1, while the off-diagonal elements of the matrix are all rho.

The value of rho must be between 1/(1p) and 1, exclusively, to ensure that the covariance matrix is positive definite.