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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!