timeonset.m 472 B

12345678910111213141516
  1. function res = timeonset(this, newonset)
  2. % Method for reading and setting the time onset
  3. % FORMAT res = timeonset(this)
  4. % res = timeonset(this, newonset)
  5. % _______________________________________________________________________
  6. % Copyright (C) 2008-2012 Wellcome Trust Centre for Neuroimaging
  7. % Vladimir Litvak
  8. % $Id: timeonset.m 5025 2012-10-31 14:44:13Z vladimir $
  9. if nargin == 1
  10. res = this.timeOnset;
  11. else
  12. this.timeOnset = newonset;
  13. res = this;
  14. end