Skip to contents

This function extracts the values of the elements in a 4D tensor, where the first three dimensions (x,y,z) have been matricized into a single dimension, using a space-time coordinate matrix. The input i is an index matrix, where each row specifies a (x,y,z,t) coordinate. The output is a vector containing the values of the elements in x at the specified space-time coordinates.

Usage

matricized_access(x, i, ...)

# S4 method for class 'SparseNeuroVec,matrix'
matricized_access(x, i)

# S4 method for class 'SparseNeuroVec,integer'
matricized_access(x, i)

# S4 method for class 'SparseNeuroVec,numeric'
matricized_access(x, i)

# S4 method for class 'BigNeuroVec,matrix'
matricized_access(x, i)

# S4 method for class 'BigNeuroVec,integer'
matricized_access(x, i)

# S4 method for class 'BigNeuroVec,numeric'
matricized_access(x, i)

Arguments

x

a data source.

i

an index matrix specifying the space-time coordinates.

...

additional arguments to be passed to methods.