Dear Open Ephys community,
thank you all for this amazing help on the Open Ephys system. I am using it for my recordings (32-channel silicon probe in freely moving rat) and I find it amazing.
I just have one small question : I'm not using the .kwik format yet. I'm converting the 32 continuous files into a dat file with a Matlab function because I'd like to open it with Neuroscope. However, when opening with Neuroscope, I have to know the “Voltage Range” value (by default 20V). I tried to find this value into the Intan documentation but I found nothing...
Would
any of you tried the same process than me (converting into dat file
and open with neuroscope) and would know what voltage range is used
by Intan for the digitalization ?
Thank you all for your help!
Laetitia Lalla
PhD student in Robbe's lab (INMED, Marseille, FRANCE)
Dynamics and functions of the basal ganglia
--
You received this message because you are subscribed to the Google Groups "Open Ephys" group.
To unsubscribe from this group and stop receiving emails from it, send an email to open-ephys+...@googlegroups.com.
To post to this group, send email to open-...@googlegroups.com.
Visit this group at http://groups.google.com/group/open-ephys.
To view this discussion on the web visit https://groups.google.com/d/msgid/open-ephys/2bc34fb7-5726-4e04-a5b3-65abb439029d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "Open Ephys" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/open-ephys/uT81gVVoVpQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to open-ephys+...@googlegroups.com.
To post to this group, send email to open-...@googlegroups.com.
Visit this group at https://groups.google.com/group/open-ephys.
To view this discussion on the web visit https://groups.google.com/d/msgid/open-ephys/94a4408b-2bfc-45eb-9978-fe4a5f82211b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/open-ephys/7e68af98-fb1f-4d9d-bd06-5954e15a6b31%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/open-ephys/47f96bd6-2844-4ff7-a6d9-d00013c0c9d9%40googlegroups.com.
Dear all,
I'm using Update load_open_ephys_data_faster.m from https://github.com/open-ephys/analysis-tools to convert .continuous in .dat. This is working great, it reads the .continous really fast, but when I want to write the data of all the .continuous in one .dat file using a fwrite matlab function it goes very slowly (900s each .continuous of 2 hours recording at 30kHz). Here is a piece of my code:
fid = fopen(‘RawData’,W);
for k = 1:length(ContinuousOrder) % loop over .continuous files
data = load_open_ephys_data_faster(DataPath{k,1});
fseek(fid,2*(k-1),'bof');
fwrite(fid, data(1), 'int16');
fwrite(fid, data(2:end), 'int16', (length(DataPath)-1)*2);
clear data
disp([num2str((c/length(DataPath))*100) '%']);
end
fclose(fid)
As you can see I write the data skiping some bytes in other to write in them the next .continuous samples during the next loop step.
Is there any other way to do it faster? I think that the problems is that I am writing the data skiping some positions, but I am not really sure...
Thank you very much for your help!!!
Ainhoa
To view this discussion on the web visit https://groups.google.com/d/msgid/open-ephys/3f818234-b499-4d91-8523-5a99599e3d21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.