add_contrasts method to add contrast definitions to design
cd_images method for changing path to image files in design
mardo mardo - class constructor for MarsBaR design object
autocorr method to set autocorrelation types for design
estimate estimate method - estimates GLM for SPM2 model
event_x_fir method to return FIR design matrix columns for session
fill fills missing entries from SPM FMRI design matrix
save_spm method to save design as SPM format design structure
autocorr method to set autocorrelation types for design
estimate estimate method - estimates GLM for SPM2 model
fill fills missing entries from SPM FMRI design matrix
event_onsets method gets (estimated) onsets and durations for event/session
event_x_fir method to return FIR design matrix columns for session
save_spm method to save design as SPM format design structure
summary_data method to get summary data, maybe set sumfunc
SOURCE CODE
0001 function res = verbose(obj, data)
0002 % get/set method for verbose field
0003 %
0004 % $Id$
0005
0006 if nargin > 1
0007 obj.verbose = data;
0008 res = obj;
0009 else
0010 res = obj.verbose;
0011 end