How to subplot 3 graphs in 1 figure?
187 ビュー (過去 30 日間)
古いコメントを表示
Is it possible to subplot 3 graphs in this particular order?
0 件のコメント
採用された回答
その他の回答 (2 件)
Raksa san
2022 年 5 月 12 日
we use
subplot(2,2,1)
subplot(2,2,2)
subplot(2,2,[3 4])
Example
t = linspace(0,10,110);
figure
subplot(2,2,1)
s1 = 1 - exp(-t);
plot(t,s1,'b*')
subplot(2,2,2)
s2 = 1 - exp(-2*t);
plot(t,s2,'ro')
subplot(2,2,[3 4])
s3 = 1 - exp(-4*t);
plot(t,s3,'gx')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!