Skip to content
Snippets Groups Projects
Commit 48b76a66 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Some more docs in featdesign

parent 7ba5756f
No related branches found
No related tags found
No related merge requests found
...@@ -141,7 +141,10 @@ class FEATFSFDesign(object): ...@@ -141,7 +141,10 @@ class FEATFSFDesign(object):
:func:`.featanalysis.loadSettings`. :func:`.featanalysis.loadSettings`.
:arg loadVoxelwiseEVs: If ``True`` (the default), image files :arg loadVoxelwiseEVs: If ``True`` (the default), image files
for all voxelwise EVs are loaded. for all voxelwise EVs are loaded. Otherwise
they are not loaded, and all calls to
meth:`getDesign` will contain the mean
data for any voxelwise EV columns.
""" """
if settings is None: if settings is None:
...@@ -201,10 +204,12 @@ class FEATFSFDesign(object): ...@@ -201,10 +204,12 @@ class FEATFSFDesign(object):
def getDesign(self, voxel=None): def getDesign(self, voxel=None):
"""Returns the design matrix for the specified voxel. """Returns the design matrix for the specified voxel.
:arg voxel: A tuple containing the ``(x, y, z)`` voxel coordinates :arg voxel: A tuple containing the ``(x, y, z)`` voxel coordinates of
of interest. If ``None`` (the default), the design interest. If ``None`` (the default), or if this
matrix is returned, with any voxelwise EV columns ``FEATFSFDesign`` was created with
containing the mean voxelwise EV data. ``loadVoxelwiseEVs=False``, the design matrix is returned,
with any voxelwise EV columns containing the mean
voxelwise EV data.
""" """
design = np.array(self.__design) design = np.array(self.__design)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment