同一个散点上的多个数据集

时间:2014-03-03 23:38:45

标签: matlab

我知道这个问题可能听起来有点简单,但我在文档中找不到我想要的内容。基本上,我想知道matlab中是否存在一个函数,它允许我在同一个散点图中对同一个x轴绘制数据集y1,y2,...,yn。

有什么建议吗?

由于

1 个答案:

答案 0 :(得分:1)

你可以使用scatter + hold on。例如,

x   = rand(1,10);
y1  = rand(1,10);
y2  = rand(1,10);
y3  = rand(1,10);


figure; grid on;
hold on;
scatter(x, y1);  
scatter(x, y2);
scatter(x, y3);

给出:

enter image description here