nominalplot

This commit is contained in:
Fabian Sinz
2014-10-06 13:49:14 +02:00
parent de8ff55740
commit 6c6605f160
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
close all
% cell type
bar([1,2], [50, 90], 'facecolor', 'k')
ylabel('cell count')
xlabel('cell type')
xlim([0.5,2.5])
ylim([0, 100])
box('off')
set(gca,'XTick',1:2,'XTickLabel',{'pyramidal', 'interneuron'},'FontSize',20)
set(gcf, 'PaperUnits', 'centimeters');
set(gcf, 'PaperSize', [11.7 9.0]);
set(gcf, 'PaperPosition',[0.0 0.0 11.7 9.0]);