help on title of graph

1 回表示 (過去 30 日間)
Leah
Leah 2012 年 7 月 23 日
i have subplots of 16 graphs and i want the title of the graph to be for the first one A, second B, third one C and so on up until P! how do i title the graph that?

採用された回答

Image Analyst
Image Analyst 2012 年 7 月 23 日
Try this:
for k = 1 : 16
subplot(4, 4, k);
% Plot your data or show your image...
caption = sprintf('Plot %c', k+64);
title(caption, 'FontSize', 14);
end
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
  1 件のコメント
Leah
Leah 2012 年 7 月 23 日
thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by