Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Best method for saving figures at given location, in given format etc. ?

2 Ansichten (letzte 30 Tage)
A Lotgering
A Lotgering am 16 Dez. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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?

Antworten (1)

Naty S
Naty S am 16 Dez. 2015
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])

Community Treasure Hunt

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

Start Hunting!

Translated by