How to plot multiple Y in the form of samples in the same X

7 ビュー (過去 30 日間)
Richard Perosa Fernandes
Richard Perosa Fernandes 2018 年 4 月 16 日
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 件のコメント
Richard Perosa Fernandes
Richard Perosa Fernandes 2018 年 4 月 16 日
I have 350 files of this style, like a1 a2 a..350. The y intesity doesn't matter if I would plot this manually, could look like a generic variable just to set the sample in the right spot: a1 = y = 1 a2 = y =2 The correct answer will be if y have the correspondent x data or not.
Richard Perosa Fernandes
Richard Perosa Fernandes 2018 年 4 月 16 日
Like this example

サインインしてコメントする。

採用された回答

Shounak Shastri
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.

  1 件のコメント
Richard Perosa Fernandes
Richard Perosa Fernandes 2018 年 4 月 16 日
Thanks shounak, I just replace every value of y with a generic number like 1 or 2 and the plot. Works like a charm.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by