How do you add a header to a printed figure?

31 visualizzazioni (ultimi 30 giorni)
Suppose you wanted to write a script to make several pages of figures each with several small subplots that could be used as thumbnails. When done, you would like to print the figures each with a header containing the page number and the number of pages of similar plots. For example:
for page = 1:3
figure (page)
clf
for sub = 1:9
subplot(3,3,sub)
plot(1:100,rand(1,100))
end
set(gcf,'PaperPosition',[.25 .25 8 10])
% add page header here
end
and you want to put a header on the page like this
  3 Commenti
Carl Hopkins
Carl Hopkins il 14 Mag 2021
Thank you Grzegorz Lippe:
This addition to Matlab sgtitle() is exactly the solution needed for this problem. A page of subplots needs to have its own title and this works seamlessly. Jan's answer has served as solution for the time being but this new function is perfect.
Adam Danz
Adam Danz il 14 Mag 2021
If you're using tiledlaytout (Matlab R2019b and later), you can assign the title to the tiledlayout object.
figure
tlo = tiledlayout(3,3);
nexttile; nexttile; nexttile;
nexttile; nexttile; nexttile;
nexttile; nexttile; nexttile;
title(tlo, 'Global Title', 'FontWeight','Bold','FontSize',18)

Accedi per commentare.

Risposta accettata

Carl Hopkins
Carl Hopkins il 14 Mag 2021
see above for sbtitle()

Più risposte (3)

Jan
Jan il 23 Mag 2017
Add a text to an invisible axes covering the complete figure:
AxesH = axes('Units', 'Normalized', 'Position', [0,0,1,1], 'Visisble', 'off', ...
'NextPlot', 'add');
text(0.5, 0.99, 'Your figure title', 'Parent', AxesH, ...
'Units', 'normalized', ...
'VerticalAlignment', 'top', 'HorizontalAlignment', 'center');
  1 Commento
Carl Hopkins
Carl Hopkins il 23 Mag 2017
Brilliant ! Thank you very much.
AxesH = axes('Units', 'Normalized', 'Position', [0,0,1,1], 'Visible', 'off', ...
'NextPlot', 'add');
text(0.5, 0.99, 'Your figure title', 'Parent', AxesH, ...
'Units', 'normalized', ...
'VerticalAlignment', 'top', 'HorizontalAlignment', 'center');

Accedi per commentare.


KL
KL il 23 Mag 2017
title(['Pg.no:' num2str(page) ' sub:' num2str(sub)])
add this next to plot
  1 Commento
Carl Hopkins
Carl Hopkins il 23 Mag 2017
Thank you for your response. Although title works well for labeling an individual axis, but it does not put a header on a page with multiple axes. I would like to have a header or footer on the page that numbers the pages of plots in sequence (as in the figure where I did it manually)

Accedi per commentare.


Sean de Wolski
Sean de Wolski il 14 Mag 2021
You can use the MATLAB Report Generator to build sophisticated reports with whatever formatting, chapters, sections, etc. you need. A trivial example:
import mlreportgen.report.*
import mlreportgen.dom.*
r = Report('figs', 'pdf');
t = Text("Figures:");
t.Style = {Bold, FontSize('24pt')};
add(r, t);
for ii = 1:3
plot(sin(1:(2^(ii+1))))
add(r, Figure);
end
close(r)
% rptview(r)

Categorie

Scopri di più su Graphics Object Properties 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!

Translated by