13 lines
341 B
Matlab
13 lines
341 B
Matlab
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]);
|