method returns TR in seconds, or empty if not available $Id$
0001 function t = tr(o) 0002 % method returns TR in seconds, or empty if not available 0003 % 0004 % $Id$ 0005 0006 t = []; 0007 SPM = des_struct(o); 0008 if mars_struct('isthere', SPM, 'xY', 'RT') 0009 t = SPM.xY.RT; 0010 end