Combining batches graphs consecutively

1 回表示 (過去 30 日間)
Tino
Tino 2019 年 7 月 2 日
回答済み: Divya Yerraguntla 2019 年 7 月 17 日
Hi
I am trying to analyse data of 2000 in batches of 500
and at the end I want to plot the graph of all 500 combined together that the x axis be 2000
How do I do this
I will be grateful for your assitance
Thanks in advance
Tino

回答 (1 件)

Divya Yerraguntla
Divya Yerraguntla 2019 年 7 月 17 日
Hi,
It is possible to concatenate 4 batches data say Y1, Y2, Y3, Y4 into a single data set Y using the code:
Y = [Y1 Y2 Y3 Y4];
Now the data can be plotted using:
plot(X, Y);
Hope it helps.

カテゴリ

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

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by