Side by side subplots with one split into 3
4 ビュー (過去 30 日間)
古いコメントを表示
How might I create a layout that looks like this
0 件のコメント
回答 (1 件)
Dyuman Joshi
2023 年 11 月 15 日
tiledlayout(3, 2)
%Span a tile across 3 rows and 1 column
nexttile([3 1])
fplot(@sin)
nexttile
scatter(rand(1,10),rand(1,10), [], [1 0 1])
nexttile
fsurf(@(x,y) sin(x)+cos(y))
nexttile
imagesc(rand(10))
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Lighting, Transparency, and Shading についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!