Channel mapping when streaming from USB-ME64 through MATLAb
Page 1 of 1
Channel mapping when streaming from USB-ME64 through MATLAb
Hello,
I am using a custom MATLAB application to stream data from a 60pMEA200 using USB-ME64. I am having trouble understanding how to request data from specific electrodes, and how the data I get corresponds to each electrode. So, in the code below, how can I know which channel in input_window corresponds to which electrode on the MEA?
I am using a custom MATLAB application to stream data from a 60pMEA200 using USB-ME64. I am having trouble understanding how to request data from specific electrodes, and how the data I get corresponds to each electrode. So, in the code below, how can I know which channel in input_window corresponds to which electrode on the MEA?
- Code:
% Set up USB-ME64
[status,hwchannels]=mea.HWInfo().GetNumberOfHWADCChannels();
status = mea.SetNumberOfChannels(hwchannels);
[status, analogchannels, digitalchannels, checksumchannels, timestampchannels, channelsinblock] = mea.GetChannelLayout(0);
mea.SetSampleRate(f_sampling, 1, 0);
mea.SetSelectedChannels(channelsinblock, f_sampling, 5000, Mcs.Usb.SampleSizeNet.SampleSize16Unsigned, channelsinblock);
mea.StartDacq();
% ...
% Data collection loop
for i = 1: channels_in_block - 1
[d, read] = mea.ChannelBlock_ReadFramesUI16(channels_to_watch(i), n_input_window);
input_window(i,:) = double(d) - 32768;
end
mcs.ali- Posts : 1
Join date : 2017-07-24
Similar topics
» about USB-ME64
» How to extract data of specified channel?
» USB-ME64 input impedance
» Can Only Access 1 Channel with datastrm
» Channel layout in filters in MC Experimenter
» How to extract data of specified channel?
» USB-ME64 input impedance
» Can Only Access 1 Channel with datastrm
» Channel layout in filters in MC Experimenter
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum