How can increase the size of a plot with multiple plots
4 ビュー (過去 30 日間)
古いコメントを表示
I am using plot command to plot 16 graphs on one figure. But when curves are plotted they are small and leaves lot of space in the corner of the figure and also leaves lot of space in between two graphs. I cannot find any command to decrease the side space or in between space between graphs.
0 件のコメント
採用された回答
その他の回答 (1 件)
Ilham Hardy
2015 年 11 月 12 日
Hi,
Once upon a time :), I stumbled into this old but gold function.
It helps me cut the figure sizing/cropping works significantly.
I hope you know how to work with function,
function subplotsqueeze(hFig, nF)
% Stretch width and height of all subplots in a figure window
% subplotsqueeze(H, F) will stretch subplots in figure with handle H by the
% proportional factor F.
%
% Examples:
% subplotsqueeze(gcf, 1.2) will expand all axes by 20%
% subplotsqueeze(gcf, 0.8) will contract all axes by 20%
%
% Expansion and contraction is equal in both directions and axes remain
% centered on their current locations.
%
hAx = findobj(hFig, 'type', 'axes');
for h = 1:length(hAx)
vCurrPos = get(hAx(h), 'position'); % current position
set(hAx(h), 'position', (vCurrPos.*[1 1 nF nF])-[vCurrPos(3)*(nF-1)/2 vCurrPos(4)*(nF-1)/2 0 0]);
end
return
Hope this helps,
Ilham
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!