Hi all,
Due to my previous failed attempts to align events to continuous data using the kwik format due to some bug (see
this thread in you have similar problems), I decided to record and test the OE format. According to the
documentation, when use load_open_ephys_data_faster.m (
from the analysis-tools), the time stamps of the events should align to the time stamps of the .continous data. However, when I do:
% load continuous
[data, ts, info] = load_open_ephys_data_faster('109_CH9.continuous');
% load events
[data_e, ts_e, info_e] = load_open_ephys_data_faster('all_channels.events');
% plot
figure(); hold on;
plot(ts, data);
plot(ts_e, data_e, '.');
Things don't match. Any ideas what is wrong? Are ts actually records instead of timestamps like in ts_e?
Many thanks again,
Edgar