1234567891011121314151617181920212223242526272829303132 |
- function res = indsample(this, t)
- % Method for getting the sample closest to some time point
- % FORMAT res = indsample(this, t)
- % this - MEEG object
- % t - vector of time points in seconds
- %
- % res - vector of sample indices matching time points
- %__________________________________________________________________________
- % Copyright (C) 2008 Wellcome Trust Centre for Neuroimaging
- % Stefan Kiebel
- % $Id: indsample.m 3742 2010-03-02 15:15:43Z vladimir $
- res = NaN(1,length(t));
- if this.Nsamples > 0
- T = time(this);
- for i = 1:length(t)
- if isfinite(t(i))
- [m,res(i)] = min(abs(T-t(i)));
- if m > (1/this.Fsample)
- warning('Could not find an index matching the requested time %d sec', t(i));
- res(i) = NaN;
- end
- elseif ~isnan(t(i)) % This allows to specify the time window as [-Inf Inf]
- if t(i) < 0
- res(i) = 1;
- else
- res(i) = this.Nsamples;
- end
- end
- end
- end
|