Skip to contents

This function generates a spherical random searchlight iterator for analyzing local neighborhoods of voxels within a given radius in a brain mask.

Usage

random_searchlight(mask, radius)

Arguments

mask

A NeuroVol object representing the brain mask.

radius

A numeric value specifying the radius of the searchlight sphere in voxel units.

Value

A list of ROIVolWindow objects, each representing a spherical searchlight region.

Examples

# Create a simple brain mask
mask_data <- array(TRUE, c(10, 10, 10))
mask_data[1, 1, 1] <- FALSE
mask <- LogicalNeuroVol(mask_data, NeuroSpace(c(10,10,10)))

# Generate random searchlight iterator with a radius of 2 voxels
if (FALSE) { # \dontrun{
searchlights <- random_searchlight(mask, radius = 2)
} # }