How can I read the pvc-3 data in matlab?
The spike timestamps are in microseconds, data format is binary 64-bit unsigned integers, as described on pg.9 of the user guide.
You can read them in Matlab with the following two lines:
fid = fopen(filename.spk)
a = fread(fid, 'uint64')
good luck!
Tim.
in Python, i used
http://pythonhosted.org/bitstring/index.html
with code:
from bitstring import Bits
fname = 'data/Blanche/crcns_pvc3_cat_recordings/drifting_bar/spike_data/t02.spk'
f = open(fname, 'rb')
p = Bits(f)
fmt = str(p.length / 64) + ' * (intle:64)'
time_stamps = p.unpack(fmt) # in microseconds