Info
此问题已关闭。 请重新打开它进行编辑或回答。
Best method for saving figures at given location, in given format etc. ?
1 次查看(过去 30 天)
显示 更早的评论
Dear all,
What is the best way to save a generated plot exactly the same as it is shown on my screen? The following code is used:
figure(3)
hist(F_RB(1,:),60)
grid on;
grid minor;
h = findobj(gca,'Type','patch');
h.FaceColor = [0 0.5 0.5];
h.EdgeColor = 'w';
title('Ridge Building','FontSize',14','FontWeight','Bold')
ylabel('Frequency','FontSize',13')
xlabel('Force [MN]','FontSize',13')
set( gcf, 'Color', 'White', 'Unit', 'pixels','Position', [0 0 600 300] );
set( gcf, 'Color', 'White', 'PaperUnits', 'points','PaperPosition', [0 0 300 150] );
figname = 'Ridge_building';
saveas(figure(3),fullfile(folder, figname), 'jpeg');
Problem is the difference in lay out. I'm struggling with the paper units. Pixels are not allowed.
Is there a better way to do this than the saveas command?
0 个评论
回答(1 个)
Naty S
2015-12-16
You might want to use the get function to get your screen size.
scrsz = get(0,'ScreenSize');
fig_handle=figure('Position',[1 1 scrsz(3)/2 scrsz(4)*0.93])
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!