Copy a plot into word without loosing quality

Hi there,
Could anybody advise me on how to copy a plot from matlab into a word document and keep a good quality format?
When I choose 'copy figure' and paste into word the quality is not good.
I put together an example here https://dl.dropbox.com/u/54057365/All/help.JPG Appreciate any comments.
Regards

 採用された回答

Jan
Jan 2013 年 1 月 9 日

1 投票

Print the diagram to a EPS file:
print FigureHandle -depsc2
This looks bad on the screen, because you see the pixel-preview only, but when printed to paper or a PDF the vector-image is used, such that the result is very sharp and clear.

その他の回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 9 日

1 投票

Try this
figure;
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(Z);
saveas(gca,'filename.tif')
Srinivas
Srinivas 2013 年 1 月 9 日
編集済み: Srinivas 2013 年 1 月 9 日

0 投票

there are a lot of file exchange submissions, one of them

カテゴリ

ヘルプ センター および File ExchangePrinting and Saving についてさらに検索

タグ

質問済み:

2013 年 1 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by