Text box as subplot
127 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jelle van Zuijlen
il 26 Mar 2015
Commentato: Jelle van Zuijlen
il 26 Mar 2015
I would like to insert a textbox as a subplot in my figure. I have a figure with 3 graphs and the fourth subplot I would like to insert a textbox with exlpanantion.
Many thanks
0 Commenti
Risposta accettata
Ilham Hardy
il 26 Mar 2015
Something like this?
figure(1)
p1 = subplot(4,1,1);
p2 = subplot(4,1,2);
p3 = subplot(4,1,3);
p4 = subplot(4,1,4);
text(0.5,0.5,'Explanation'); axis off
2 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!