Borrar filtros
Borrar filtros

How to save figure as appears on the screen? with the same aspect ratio, and font size, etc. ?

5 visualizaciones (últimos 30 días)
figure('units','normalized','outerposition',[0 0 .5 1]);
hist(rand(100));
saveas(gcf,sprintf('%s.png',mfilename));
For example in this case the output png is not a portrait format, however the figure window is.

Respuestas (2)

Image Analyst
Image Analyst el 3 de Jun. de 2016

thomas weldon
thomas weldon el 21 de Jun. de 2018
Editada: Walter Roberson el 25 de Jun. de 2018
Try this:
fig=gcf;ax=fig.CurrentAxes;fig.Color='w';fig.OuterPosition=fig.InnerPosition;

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by