fixed code style

This commit is contained in:
Jan Benda 2016-11-28 21:14:14 +01:00
parent 328eb8838a
commit f0c3c7f825
3 changed files with 14 additions and 15 deletions

View File

@ -1,7 +1,7 @@
function [pdf, centers] = isiHist(isis, binwidth) function [pdf, centers] = isihist(isis, binwidth)
% Compute normalized histogram of interspike intervals. % Compute normalized histogram of interspike intervals.
% %
% [pdf, centers] = isiHist(isis, binwidth) % [pdf, centers] = isihist(isis, binwidth)
% %
% Arguments: % Arguments:
% isis: vector of interspike intervals in seconds % isis: vector of interspike intervals in seconds

View File

@ -24,7 +24,6 @@ else
xlim([0.0 tmax]); xlim([0.0 tmax]);
end end
ylabel('Trials'); ylabel('Trials');
ylim( [ 0.3 ntrials+0.7 ] ) ylim([0.3 ntrials+0.7 ]);
end end