Having trouble with the spike triggered average
5 views (last 30 days)
Show older comments
I keep getting empty matrices when trying to determine a spike triggered average. Below is my code. Can anyone help??
spkr=[NaN,spikes(1:end-1)]; trig_spk=find(spikes>0 & spkr<=0); x1=1:length(spikes);
y2=zeros(1,length(trig_spk)); figure;plot (x1,spikes,'g',trig_spk,y2,'.') dog=[]; cat=[]; for i=1:length(trig_spk) try dog(i,:)=binarized( trig_spk(i) : trig_spk(i)+4000-1); cat(i,:)=spikes(trig_spk(i) : trig_spk +4000-1); end; end end;
0 Comments
Answers (4)
Star Strider
on 16 Mar 2015
I keep getting empty matrices too, because I don’t have your data.
Care to let us know what your ‘spikes’ data are?
0 Comments
Holly Hunsberger
on 16 Mar 2015
2 Comments
Image Analyst
on 16 Mar 2015
After you click "Choose file..." remember to click the "Attach file" button or else it won't attach.
Also, read this and fix your post: http://www.mathworks.com/matlabcentral/answers/13205-tutorial-how-to-format-your-question-with-markup
See Also
Categories
Find more on Electrophysiology in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!