how to export figure to completely vector format with patch plot?
10 次查看(过去 30 天)
显示 更早的评论
I need to export my figure to vector format for publishing, but it is a probelem that the figure, which is vector format in screen, convert to raster format.
I have tried to use following methods.
- print(h_fig, '-painters', '-dpdf', 'print_painters.pdf')
- export_fig exp_painters.pdf -painters
- export_fig exp_q.pdf -q101Expert_fig
There is the shortcut figure for above.
Unfortunately, the problem is still exist. It may be a question in here:
```
% p = patch(X,Y,f,'EdgeColor','none','LineStyle','-');
p = patch(X,Y,f);
% shading interp
% S.FaceVertexCData = [0;0;0;0];
% set(p,'LineStyle','none:')
set(p,'EdgeColor','none')
```
Thanks in advance !
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!