Hi guys,
So I have this vector with 182 elements that show me timings of a neuron's spiking activity. Each element corresponds to a time point, for e.g. 672 where 672 is in ms.
My timeline is 10s or 10000 ms.
What I need to generate is a vector with 10000 elements, where there are 1s at the times corresponding to the spike-timing matrix and 0s everywhere else.
The code I wrote shows me only one 1, that too at the last time point. Here is what I wrote -
spikes = zeros(1,length(time));
s = SpikeTimes*10;
for j = 1:length(SpikeTimes)
for i = 1:length(spikes)
if s(j) ~= i
spikes(i) = 0;
else
spikes(i) = 1;
end
end
end
Could anyone please help me out? Thanks.
I need to further use the generated spikes vector to calculate firing rate using binning, a rectangular window, a gaussian window and compare and discuss the results.

 採用された回答

Matt Tearle
Matt Tearle 2011 年 5 月 3 日

0 投票

Perhaps I misunderstand, but you should be able to do simply:
spikes(SpikeTimes*10) = 1;
Example:
x = [1 2 7 14 17]
y = zeros(1,20);
y(x) = 1

6 件のコメント

Abhilash
Abhilash 2011 年 5 月 3 日
Nope, that didn' work. What actually worked was taking away the 'else' clause. Weird.
Abhilash
Abhilash 2011 年 5 月 3 日
Oh not weird. I get why taking away the else clause worked.
Matt Tearle
Matt Tearle 2011 年 5 月 3 日
What does SpikeTimes look like? Is this the 182-element vector of timings (672 etc)?
Abhilash
Abhilash 2011 年 5 月 3 日
Yes. It has timings starting at 672 and ending at 8606
Matt Tearle
Matt Tearle 2011 年 5 月 3 日
OK so:
spikes = zeros(...)
spikes(SpikeTimes) = 1;
Abhilash
Abhilash 2011 年 5 月 3 日
Thanks

サインインしてコメントする。

その他の回答 (1 件)

Dimithra Anton
Dimithra Anton 2020 年 9 月 13 日

0 投票

spikes = zeros(1,length(time));
spikes = zeros(1,length(time))

2 件のコメント

Adam Danz
Adam Danz 2020 年 9 月 13 日
編集済み: Adam Danz 2020 年 9 月 13 日
spike = zeros(size(time));
to maintain the same shape.
Also avoid using length() since you never know what dimension it will return if your data aren't a vector. Instead, use
spike = zeros(1,numel(time));
Abhilash
Abhilash 2020 年 9 月 13 日
Wow this was 9 years ago!

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeElectrophysiology についてさらに検索

質問済み:

2011 年 5 月 3 日

コメント済み:

2020 年 9 月 13 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by