subplot with 1 large and 2 small figures
Afficher commentaires plus anciens

Is it possible to create a subplot like this? I.e.,
% | 1 |
% |________|
% | 2 | 3 |
% | | |
Réponse acceptée
Plus de réponses (1)
Les Beckham
le 15 Juin 2023
Modifié(e) : Les Beckham
le 15 Juin 2023
tiledlayout(2, 2)
nexttile([1 2]) % first plot spans two tiles
plot(rand(1,10))
grid on
nexttile
plot(10*rand(1,10))
grid on
nexttile
plot(100*rand(1,10))
grid on
Catégories
En savoir plus sur Subplots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

