Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Best method for saving figures at given location, in given format etc. ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Naty S
el 16 de Dic. de 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])
0 comentarios
La pregunta está cerrada.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!