method gets cell string description of design $Id$
0001 function strs = descrip(D) 0002 % method gets cell string description of design 0003 % 0004 % $Id$ 0005 0006 SPM = des_struct(D); 0007 strs = {'Not specified'}; 0008 if ~isfield(SPM, 'xsDes'); 0009 return 0010 end 0011 strs = mars_struct('celldisp', SPM.xsDes);