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/statistics/matlab/nominal_plots.m
2014-10-06 13:49:14 +02:00

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]);