Copy figure in Matlab -


i asking solution blurred image when use copy figure option in matlab. example, when plot 3d figure in matlab following image (it result of printscreen!).. enter image description here

however, when use option copy figure blurred image following image enter image description here.

how can avoid need high resolution image using copy figure option. thank in advance may lend.

by default, figure copied enhanced metafile (a color graphics format) works basic plots such bar plots, line plots, , other 2d plots may yield undesirable results more complex plots in case. because rendering of metafile content controlled microsoft word , may render things differently matlab.

if need high resolution image, recommend using print command can specify desired resolution (using -r option). can import resulting image word

print(gcf, 'myfile.png', '-dpng', '-r300') 

alternately, can use export_fig file exchange better preserves appearance

another option change format used copy figure tell use bitmap instead

enter image description here

or can call copy figure programmatically , specify different format (either bitmap or pdf)

print(gcf, '-clipboard', '-dpdf')  

Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -