ROIVol | R Documentation |
Creates an ROIVol
object representing a set of values
at specific 3D coordinates within a spatial reference system.
ROIVol(space, coords, data)
space |
A |
coords |
A matrix with 3 columns representing (x,y,z) coordinates |
data |
A numeric vector of values corresponding to each coordinate |
ROI Volume
An ROIVol
object
space <- NeuroSpace(c(64,64,64))
coords <- matrix(c(1,2,3, 4,5,6), ncol=3, byrow=TRUE)
data <- c(1.5, 2.5)
roi_vol <- ROIVol(space, coords, data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.