フィルターのクリア

Concatenate 2/more graphs into 1 graph

9 ビュー (過去 30 日間)
Edoardo
Edoardo 2023 年 4 月 7 日
コメント済み: Star Strider 2023 年 4 月 7 日
I've a problem to combine 2 graphs into 1 graph. The data is taken from Read EDF file. Then I did the plotting for 2 different graphs. Then I get this graph
if you look at those graphs closely, actually both of them can be concatenated together, so that the second graph on the right started from 10-20, continuing the first graph on the left. But I can't figure it out how to do it. For your info, I also attached the code in here, so that it's clear what I mean. Thank you
tt = edfread('example.edf');
info = edfinfo('example.edf');
fs = info.NumSamples/seconds(info.DataRecordDuration);
recnum = 1;
signum = 1;
t = (0:info.NumSamples(signum)-1)/fs(signum);
y1 = tt.(signum){recnum};
recnum = 2;
signum = 1;
y2 = tt.(signum){recnum};
subplot(1,2,1); plot(t,y1); subplot(1,2,2); plot(t,y2)

採用された回答

Star Strider
Star Strider 2023 年 4 月 7 日
I do not have your files, however this is straightforward —
t1 = linspace(0, 10, 250);
signal1 = randn(size(t1));
t2 = linspace(0, 15, 250);
signal2 = randn(size(t2));
figure
tiledlayout(1,2)
nexttile
plot(t1,signal1)
nexttile
plot(t2,signal2)
figure
plot(t1, signal1)
hold on
plot(t2+t1(end), signal2)
hold off
I kept them different colours for clarity, and they will be plotted this way by default. It is straightforward to set the colours to be the same.
.
  2 件のコメント
Edoardo
Edoardo 2023 年 4 月 7 日
by the way, the file can refer to here, the "example.edf" file provided in the MATLAB. Anyway, it already works, thank you :)
Star Strider
Star Strider 2023 年 4 月 7 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNetworks についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by