使用我上一个问题的答案,我使用以下方法绘制了元胞数组的直方图:
[nelements,centers]=hist(cellfun(@numel,S));
numNeighbors = cellfun(@numel,S);
[nelements,centers]=hist(numNeighbors,unique(numNeighbors))
pcts = 100 * nelements / sum(nelements)
figure
bar(centers,pcts)
在 y 轴上显示每个 xvalue 出现的百分比,是否可以在直方图上显示百分比数字,就像我在上图中添加的那样,以便可以轻松地可视化数字?