all properties in lower case

This commit is contained in:
Jan Grewe 2015-11-16 10:28:03 +01:00
parent 168fdbe902
commit 11065f2b4a
2 changed files with 9 additions and 9 deletions

View File

@ -13,18 +13,18 @@ plot(spikes, ones(size(spikes)) .* threshold, 'ro', 'markersize', 5, ...
line([time(1) time(end)], [threshold threshold], 'linestyle', '--', ... line([time(1) time(end)], [threshold threshold], 'linestyle', '--', ...
'linewidth', 0.75, 'color', [0.5 0.5 0.9], 'displayname', 'threshold') 'linewidth', 0.75, 'color', [0.5 0.5 0.9], 'displayname', 'threshold')
xlabel('time [s]', 'fontname', 'Times', 'fontsize', 11) xlabel('time [s]', 'fontname', 'times', 'fontsize', 11)
ylabel('potential [mV]', 'fontname', 'Times', 'fontsize', 11) ylabel('potential [mV]', 'fontname', 'times', 'fontsize', 11)
title('ELL pyramidal neuron', 'fontname', 'Times', 'fontsize', 12) title('ELL pyramidal neuron', 'fontname', 'times', 'fontsize', 12)
ylim([0 35]) ylim([0 35])
xlim([0 2.25]) xlim([0 2.25])
box('off') box('off')
l = legend(gca,'show'); l = legend(gca,'show');
set(l,'Location','northwest', 'Fontsize', 7, 'LineWidth', 1.); set(l,'location','northwest', 'fontsize', 7, 'linewidth', 1.);
set(gca, 'XMinorTick','on','yMinorTick','on') set(gca, 'xminortick','on','yminortick','on')
set(gca, 'TickDir','out', 'linewidth', 1.5, 'fontname', 'Times', ... set(gca, 'tickdir','out', 'linewidth', 1.5, 'fontname', 'times', ...
'fontsize', 11) 'fontsize', 11)
set(gcf, 'PaperUnits', 'centimeters', 'PaperSize', [15 7.5]); set(gcf, 'paperunits', 'centimeters', 'papersize', [15 7.5]);
set(gcf, 'PaperPosition',[0.0 0.0 15, 7.5], 'Color', 'white') set(gcf, 'paperposition',[0.0 0.0 15, 7.5], 'color', 'white')
saveas(gcf, [pwd '/../lecture/images/spike_detection.pdf'], 'pdf') saveas(gcf, [pwd '/../lecture/images/spike_detection.pdf'], 'pdf')