subplot hoe to add a tile?
1 回表示 (過去 30 日間)
古いコメントを表示
subplot, how can I add a total title? neglect gtext. anyknow knows a better way? thankx
0 件のコメント
採用された回答
Grzegorz Knor
2012 年 2 月 22 日
Try this code:
for i = 1:4
subplot(2, 2, i)
plot(rand(1, 10));
end
axes('Units','Normal','Position',[.075 .075 .85 .85],'Visible','off');
set(get(gca,'Title'),'Visible','on')
title('global title','FontWeight','bold','FontSize',15);
or use one of these function from fex:
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!