ts1 = timeseries(rand(1,4096));
%official approach. uses indices
ss2a = getsampleusingtime(ts1, 1, 2048);
ss2b = getsampleusingtime(ts1, 2049, 4096);
ss2a, ss2b
%another approach. Uses times with first time being 0
ss1a = resample(ts1, 0:2047);
ss1b = resample(ts1, 2048:4095);
ss1a, ss1b