How do I add a title to each subplot?
Afficher commentaires plus anciens
I have the following codes
delta=[-2*pi:0.063:2*pi];
y=sin(delta);
subplot(3,2,1)
plot(y)
y=cos(delta);
subplot(3,2,2)
plot(y)
title(sin(delta))
My question is how do i put the title for each graph and labels? i tried to to do title(sin(delta)) but it doesn't show
Réponse acceptée
Plus de réponses (2)
Chad Greene
le 28 Avr 2016
3 votes
For subplots I often prefer to use ntitle rather than title. The difference is ntitle keeps the text closer to the data, whereas title places the text high above the axes, where it may appear to be an xlabel for to the plot above.
Azzi Abdelmalek
le 13 Mar 2013
title('sin(delta)')
2 commentaires
Shakir Hussain
le 29 Mar 2019
Great Azzi
You are always providing short,simple and effective solution
thankyou for your effort
Chad Greene
le 5 Avr 2019
Or this, which is shorter, simpler, and just as effective :-)
title sin(delta)
Catégories
En savoir plus sur Axes Appearance 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!