How do I make MATLAB print my figure in vector format?
5 ビュー (過去 30 日間)
古いコメントを表示
I have a code that outputs a figure. I have been using the print command:
print -depsc -r1200 batholith.eps
The output file (.eps) is a series of horizontal (raster) slices rather than a vector formated file.
All I want to do is be able to edit the file as a vector file like I would say a GMT .ps output file.
0 件のコメント
回答 (1 件)
Razvan
2012 年 11 月 8 日
try this:
print(figureHandle, '-depsc2', '-painters', filename);
If the figure is too complex maybe you want to use export_fig
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Printing and Saving についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!