我是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');
答案 0 :(得分:2)
您想使用“hold on”命令。
如,
plot(x);
hold on;
plot(y);
plot(z);
hold off;