在轴限制matlab中定义X和Y.

时间:2015-01-03 00:09:06

标签: matlab histogram axes handles

我的直方图有这种外观

enter image description here

他想要这样,但我不知道我应该改变哪些字段或

我想要这样

enter image description here

我该如何定义?

1 个答案:

答案 0 :(得分:0)

据我所知,您希望以一种方式绘制图像的直方图,将x轴限制为255灰度,将y限制为图像中的像素数。这应该做的工作:

ima=[1 2 255;0 23 78;3 60 200;255 0 78]
plot([0:255],hist(ima(:),[0:255]))
set(gca,'xLim',[0 255])
set(gca,'yLim',[0 numel(ima)])