returns struct with fields from maroi object useful for copying objects $Id$
0001 function params = paramfields(o) 0002 % returns struct with fields from maroi object useful for copying objects 0003 % 0004 % $Id$ 0005 0006 params = struct('spm_hold', o.spm_hold,... 0007 'binarize', o.binarize,... 0008 'roithresh', o.roithresh,... 0009 'descrip', o.descrip,... 0010 'label', o.label);