Side by side subplots with one split into 3

3 views (last 30 days)
HC98
HC98 on 15 Nov 2023
Commented: Alexander on 22 Nov 2023
How might I create a layout that looks like this

Answers (1)

Dyuman Joshi
Dyuman Joshi on 15 Nov 2023
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 Comments
Alexander
Alexander on 22 Nov 2023
Not my question but a very helpful advice. Thanks.

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!