method to get estimated betas $Id$
0001 function r = betas(o) 0002 % method to get estimated betas 0003 % 0004 % $Id$ 0005 0006 if ~is_mars_estimated(o) 0007 error('No betas, model not estimated'); 0008 end 0009 SPM = des_struct(o); 0010 r = SPM.betas;