This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/programming/exercises/psths.m
2014-10-14 18:19:00 +02:00

16 lines
304 B
Matlab

load('ampullary.mat')
fig = figure();
%% create PSTH on the basis of the interspike intervals
fig.sub
% 1. get the interspike intervals for each trial
for i = 1:size(times,2)
isi = diff(times{i});
end
%% create PSTH using the binning method
%% create PSTH using the kernel-convolution method