Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用以下属性绘制多个直方图。
每个直方图的数据不同,范围也不同。
每个直方图的 x 轴应具有相同的范围,从 0 到 10000。
对于每个直方图,数据范围可能不是从 0 到 10000,而是从 0 到 2500 或某个其他数字,最小值大于或等于 0,最大值小于或等于 10000。
对于每个直方图,我希望在感兴趣的范围内有 10 个 bin(例如,在 0-2500 之间有 10 个 bin)。
有没有内置的方法可以做到这一点?还是我应该自己实施?
为什么不只使用hist()数据并使用set()将轴设置为(0,10000).
hist()
set()
(0,10000)
例如:
mymean=2000; mystd=200; a=random('normal',mymean,mystd,1000,1); hist(a,10); set(gca,'XLim',[0 10000])
用于hist()绘图或histc()计数。
histc()