如何在matlab中将两个数组合并为单个直方图

时间:2014-01-25 15:19:58

标签: matlab

我想比较两个直方图。 在数组A和B中有50个值。 我想在matlab中使用不同颜色的A和B绘图将它们显示在一个直方图中。

这是我目前的代码:

load iris.txt;
A=iris(:,1);
B=iris(:,2);

任何人都可以帮我这么做吗?

1 个答案:

答案 0 :(得分:1)

将所有数据放入矩阵

例如:

figure
rng(0,'twister') 
data = randn(1000,3);
hist(data)

enter image description here