How to Center Align the title for a figure?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hadi Hajieghrary
am 24 Dez. 2014
Kommentiert: Star Strider
am 24 Dez. 2014
This is the code I use to title my figures:
title('Agent 1 \newline Probability Density Function - Step 1','FontWeight','bold',... 'FontSize',12,... 'FontName','Times New Roman');
The problem is Matlab left-align the text in title:
Agent 1 Probability Density Function - Step 1
which is ugly!. My question is How can I Center-Align it as:
Agent 1
Probability Density Function - Step 1
Thanks, Hadi
0 Kommentare
Akzeptierte Antwort
Star Strider
am 24 Dez. 2014
Bearbeitet: Star Strider
am 24 Dez. 2014
Try this:
ttl = sprintf('Agent 1\nProbability Density Function - Step 1');
title(ttl,'FontWeight','bold', 'FontSize',12, 'FontName','Times New Roman');
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!