The function performs Independent Component Analysis.
fmriica(data, m = 3, method = "temporal", xind = NULL, yind =
NULL, zind = NULL, tind = NULL, filter.time = "None",
filter.space = FALSE, h.space = 3, h.time = 3, keepv =
FALSE, ...)
Observation matrix (dimension Nxd)
Number of independent components.
Either "spatial"
or "temporal"
. Specifies the type of ICA to perform.
index of x-coordinates to use
index of y-coordinates to use
index of z-coordinates to use
index of time points to use
not yet documented
not yet documented
not yet documented
not yet documented
not yet documented
further arguments to fastICA
The function returns a list with components
Matrix containing the first m ICA directions as columns.
Standard deviations of the principal components of the thresholded ICA directions
first m components of the rotated data
If keepv==TRUE
the set of directions v^{(k)}
If keepv==TRUE
the norm of each v^{(k)}
.
This is still experimental code based on the package fastICA. The package fastICA seems limited in
the data-size it can handle. xind
, yind
, zind
and tind
may be use to restrict
the analysis to a cube in space and certain time points.