give title below a figure
Mostrar comentarios más antiguos
is it possible to give title below a figure?? if so can someone show me how to do it?
2 comentarios
Muruganandham Subramanian
el 18 de En. de 2013
Do you need to include 'title' Below xlabel?
Elysi Cochin
el 18 de En. de 2013
Respuesta aceptada
Más respuestas (1)
Jan
el 18 de En. de 2013
Create a TEXT object in the current axes and set it outside the plot area:
text(0.5 -0.1, 'Sub title', 'Units', 'normalized')
Does this work? I cannot test it currently.
What about xlabel?
Or create an invisible axes in the background:
FullAxesH = axes('Units', 'normalized', 'Position', [0,0,1,1], ...
'Visible', 'off');
Now get the position of each subplot:
H = subplot(1,3,1);
Pos = get(H, 'Position');
and use this to define the position of the TEXT.
Categorías
Más información sobre Title en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!