如果我有直方图边缘和bin计数的向量,是否可以使用它来直接生成直方图?
例如,给定数据向量
edges = 0:10; % histogram edges for 9 bins
counts = round(normpdf(edges(1:end-1), 5, 2) * 1000) % Generate bin counts
counts =
9 27 65 121 176 199 176 121 65 27
我总是可以人为地生成数据
data = [];
for i = 1:numel(counts)
% This should be optimised by pre-allocating the data array,
% but this is only provided as an example.
data = [data (ones(1, counts(i)) * mean(edges(i:i+1)))];
end
以便numel(data) == sum(counts)
然后我可以使用histogram(data, edges)
绘制直方图:
但是,我想这样做而不必进行生成人工数据的中间步骤,因为这似乎相当复杂。
我知道我可以使用bar
功能,但我更喜欢使用histogram
,因为我更喜欢它绘制的方式和它提供的功能。
编辑:我正在使用MATLAB R2015a / R2015b,但如果可能的话我宁愿保持与R2015a的向后兼容性(我知道R2015b中histogram
有相当大的变化)。
答案 0 :(得分:1)
我不认为你可以规避将实际数据提供给Histogram
对象。 Histogram
对象的功能包括能够在事后更改容器/边缘,并且为此需要知道其源数据。