如何在一个图中绘制两个不同类的直方图?

时间:2017-08-07 12:53:44

标签: matlab plot

我在两个绘图中有两个绘制直方图。如果通过L2-NORM实现了入侵者的距离,则一类是经认证的用户和其他人的距离。

intruder_dist = [0.02,0.05,0.03 ......],另一个是其对应的数字。 intruder_num = [10,2,40,..........]

与已知的用户距离相同。 intruder_dist = [0,0.002,0.001 ......],另一个是其对应的数字。 intruder_num = [30,50,70,..........] 下面是我想要实现的直方图。如何在matlab中绘制它。

enter image description here

1 个答案:

答案 0 :(得分:4)

如果我理解正确,您只需要hold on / histogram两次来电之间hist。这是一个例子:

histogram(10+2*randn(1,1e4), 21)
hold on
histogram(2+.3*randn(1,1e4), 11)

enter image description here