How can I save only content of matlab figure ?
26 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i am using the following code: fig=figure,imshow(RIm); saveas(fig,'22.jpg');
It saves as image but with white border. How can I save only content of the figure.
0 comentarios
Respuestas (2)
KSSV
el 8 de Feb. de 2017
x = rand(20,1) ;
y = rand(20,1) ;
plot(x,y)
set(gca,'LooseInset',get(gca,'TightInset'));
saveas(gcf,'junk.jpg')
James Tursa
el 9 de Feb. de 2017
You might check out this FEX submission by Yair Altman:
0 comentarios
Ver también
Categorías
Más información sobre Migrate GUIDE Apps 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!