Make subplot span across multiple slots
Afficher commentaires plus anciens
assume a figure split as a 4x3 grid,
+-+-+-+-+
| | | | |
+-+-+-+-+
| | | | |
+-+-+-+-+
| | | | |
+-+-+-+-+
I would like to display 6 plots in a single image, 2 big ones and 4 small ones, in the following way
- Plot A should take the 4 leftmost, topmost cells
- Plot B should take the 4 rightmost, topmost cells
- Plots C, D, E, f should take the 4 last cells
+-+-+-+-+
|A|A|B|B|
+-+-+-+-+
|A|A|B|B|
+-+-+-+-+
|C|D|E|F|
+-+-+-+-+
I know it is possible to have a plot span on multiple columns in a single row, but is it possible to make it span multiple rows?
Réponse acceptée
Plus de réponses (2)
Walter Roberson
le 11 Oct 2015
5 votes
Yes. subplot(4,4,[1 2 5 6])
Muhammad RSMY
le 18 Juil 2017
0 votes
Hi friends..
how to code to display all subplots in one figure for mm and nn for example: mm and nn are 5*5 or 6*4.. whatever.. its possible to make general code, whatever mm and nn is, should subplot accordingly.
5*5=25 subplots 6*4=24 subplots.. etc
in normal way..i know we code as plot(1,1); subplot(5,5,1) ..
I hope someone can help me to generate code as general cause I am dealing with more data's with different mm and nn
thanks in advance
Catégories
En savoir plus sur Subplots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!