24 lines
442 B
Matlab
24 lines
442 B
Matlab
w = 0.1;
|
|
cmax = 8;
|
|
pmax = 0.5;
|
|
subplot(1, 3, 1);
|
|
counthist(poissonspikes, w);
|
|
xlim([0 cmax])
|
|
set(gca, 'XTick', 0:2:cmax)
|
|
ylim([0 pmax])
|
|
title('Poisson');
|
|
|
|
subplot(1, 3, 2);
|
|
counthist(pifouspikes, w);
|
|
xlim([0 cmax])
|
|
set(gca, 'XTick', 0:2:cmax)
|
|
ylim([0 pmax])
|
|
title('PIF OU');
|
|
|
|
subplot(1, 3, 3);
|
|
counthist(lifadaptspikes, w);
|
|
xlim([0 cmax])
|
|
set(gca, 'XTick', 0:2:cmax)
|
|
ylim([0 pmax])
|
|
title('LIF adapt');
|
|
savefigpdf(gcf, 'counthist.pdf', 20, 7); |