Matlab:在单个图中合并所有绘图曲线

时间:2014-09-03 22:21:28

标签: matlab

我是matlab的新手,我有三个带有单曲线的人物。我需要将所有曲线合并为单个图形。我该怎么做?

代码:

figure;
plot(RedInd,hRed);
leg = legend('Red','Blue','Green')
title('Histogram Red Channel');


figure;
plot(BlueInd,hBlue);
title('Histogram Blue Channel');

figure;
plot(GreenInd,hGreen);
title('Histogram Green Channel');

1 个答案:

答案 0 :(得分:2)

您想使用“hold on”命令。

如,

plot(x);
hold on;
plot(y);
plot(z);
hold off;