method to get or set SPM design structure $Id$
0001 function r = design_structure(o, xX) 0002 % method to get or set SPM design structure 0003 % 0004 % $Id$ 0005 0006 SPM = des_struct(o); 0007 if nargin < 2 0008 r = mars_struct('getifthere', SPM, 'xX'); 0009 else 0010 SPM.xX = xX; 0011 r = des_struct(o, SPM); 0012 end