Learn R Programming

AnalyzeFMRI (version 1.1-16)

cov.est: Estimates the covariance between neighbouring voxels

Description

Estimates the covariance between neighbouring voxels using a specified neighbourhood system.

Usage

cov.est(mat, mask, nmat)

Arguments

mat

3D array of voxel values.

mask

Array with sam dimension as mat that is 1/0 for voxels to be included/excluded.

nmat

Neighbourhood matrix.

Value

The estimated covariance

Examples

Run this code
# NOT RUN {
ksize <- 9
d <- c(64, 64, 21)
FWHM <- 9
sigma <- diag(FWHM^2, 3) / (8 * log(2))
voxdim <- c(2, 2, 4)

filtermat <- GaussSmoothKernel(voxdim, ksize, sigma)

mask <- array(1, dim = d)
num.vox <- sum(mask)

mat <- Sim.3D.GRF(d = d, voxdim = voxdim, sigma = sigma, ksize = ksize, mask = mask, type = "field")$mat

nmat <- expand.grid(-1:1, -1:1, -1:1)
nmat4 <- nmat[c(11, 13, 15, 17), ]

cov <- cov.est(mat, mask, nmat4)
# }

Run the code above in your browser using DataLab