Side by side subplots with one split into 3

조회 수: 4 (최근 30일)
HC98
HC98 2023년 11월 15일
댓글: Alexander 2023년 11월 22일
How might I create a layout that looks like this

답변 (1개)

Dyuman Joshi
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
Dyuman Joshi
Dyuman Joshi 2023년 11월 22일
@HC98, Did my answer solved your problem?
Alexander
Alexander 2023년 11월 22일
Not my question but a very helpful advice. Thanks.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by