Changing the points to pixels rendering ratio
显示 更早的评论
I am creating figures for a journal paper via MATLAB, and I copy these figures into Adobe Illustrator to do final tweaks. The real size of the figures for the journal are no more than 240 points by 240 points (1 pt being 1/72 of an inch). It's helpful to work in real units the whole time, so I set all my MATLAB figures to use units "points". However, this makes creating figures difficult as a plot of 120x120pts in size for example is incredibly small when rendered to the screen. I have included an example picture. Is there a way to change the scale of MATLAB's plot renderer so that say, 120pts corresponds to several hundred pixels? I would like to specify the length to pixel ratio.
3 个评论
Alexander Hensley
2019-11-3
Image Analyst
2019-11-3
And why can't you resize it by just grabbing the corner or edge of the figure and dragging it bigger?
Alexander Hensley
2019-11-3
回答(1 个)
Subhadeep Koley
2019-11-5
You can first tweak your figure in the default large rendering then only use the below code to resize and save your plot to any desired size, resolution, and format.
figure('Color','w'); surf(peaks);
% Set your preferred dimension
set(gcf, 'Units', 'points', 'Position', [0, 0, 240, 240]);
% Print in raster PNG format
print('test','-dpng','-r0'); % change the 3rd argument to change resolution '-r0' is the screen R % resolution
% Print in true vector EPS format
print('test','-depsc','-painters');
On the more, the function export_fig() can be very helpful to you for exporting your plot to any desired size, resolution, and format after tweaking.
Hope this helps!
类别
在 帮助中心 和 File Exchange 中查找有关 Grid Lines, Tick Values, and Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

