append one graph to another
古いコメントを表示

Hi guys, How to append one graph to another? Tried using 'hold on' but it doesn't work. Thanks.
採用された回答
その他の回答 (1 件)
Mischa Kim
2014 年 2 月 19 日
You mean something along the lines of:
x1 = 1:50; x2 = 1:10; x3 = 1:10;
y1 = rand(1,50); y2 = rand(1,10); y3 = rand(1,10);
x = [x1 x2+x1(end) x3+x1(end)+x2(end)];
y = [y1 y2 y3];
plot(x,y)
カテゴリ
ヘルプ センター および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!