Package mvpa :: Package misc :: Package fsl :: Module base :: Class FslGLMDesign
[hide private]
[frames] | no frames]

Class FslGLMDesign

source code


Load FSL GLM design matrices from file.

Be aware that such a desig matrix has its regressors in columns and the samples in its rows.

Instance Methods [hide private]
 
__init__(self, source)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_loadFile(self, fname)
Helper function to load GLM definition from a file.
source code
 
plot(self, style='lines', **kwargs)
Visualize the design matrix.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, source)
(Constructor)

source code 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__

plot(self, style='lines', **kwargs)

source code 
Visualize the design matrix.

:Parameters:
  style: 'lines', 'matrix'
  **kwargs:
    Additional arguments will be passed to the corresponding matplotlib
    plotting functions 'plot()' and 'pcolor()' for 'lines' and 'matrix'
    plots respectively.