How to plot multiple Y in the form of samples in the same X
1 次查看(过去 30 天)
显示 更早的评论
I have alot of samples with different X and Y, like this:

...and I want to plot one graphs with Y (samples) and X like this:

I know how to make this graph manually, but I have 350 samples... so it's kind hard. I can join every x with outerjoin, but i really don't know how can I plot.
3 个评论
采纳的回答
Shounak Shastri
2018-4-16
编辑:Shounak Shastri
2018-4-16
Try this,
plot(x1, y1, 'r*', x2, y2, 'yo', x3, y3, 'ks');
Here, I have taken (x, y) from a1 as (x1, y1), (x, y) from a2 as (x2, y2), and so on.
And then you can use
legend('a1', 'a2', 'a3');
This will indicate the colours you have used to denote the values.
Best of luck.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!