matlab画直方图实例

一个bar函数的实例

figure(3);
[counts,centers] = hist(behav_vec);
bar(centers,counts);
xlim([0.05 0.48]);
xlabel(['Weber fraction (\itw)']);
ylabel(['Number of subjects']);
h = findobj(gca,'Type','bar');
h.FaceColor = [0 0.6 0.9];

效果

matlab画直方图实例_第1张图片

你可能感兴趣的:(matlab代码库)