How to save a 3D surface plot in 2D view in vector image format?

102 ビュー (過去 30 日間)
Jian Wen Choong
Jian Wen Choong 2019 年 7 月 18 日
編集済み: Eric Sargent 2023 年 12 月 20 日
surfc(x,y,z,'LineStyle','none')
view(2)
I try to save it as eps file, but matlab default setting save it as bitmap instead of vector format (it doesn't happen for 2D plot). I then go to Export Setup > Rendering > tick Custom renderer with painter (vector format), but it gives me the contour plot under 3D surface plot. I have tried to use surf() instead, but it gives me a blank graph. I think MatLab saves the XY plane without projection of Z values, instead of the figure in 2D view. Does anyone have an alternative solution? Thanks!

採用された回答

Bruno Luong
Bruno Luong 2019 年 7 月 18 日
編集済み: Eric Sargent 2023 年 12 月 20 日
Update: Starting in R2020a you can use the exportgraphics function to export to .eps.
exportgraphics(gcf,'2D.eps');
(Original answer prior to R2020a):
Try this
h=surfc(peaks,'LineStyle','none');
set(h(2),'LineColor','k');
view(2);
% Make contour-plot on top of the surface
set(gca,'Children',flip(h),'sortmethod','childorder')
set(gcf,'Renderer','Painter')
hgexport(gcf,'2D.eps');

その他の回答 (1 件)

Jakob
Jakob 2019 年 7 月 18 日
編集済み: Jakob 2019 年 7 月 18 日
There is a very popular function over at the File Exchange: export_fig which deals with correctly exporting figures from Matlab. Maybe this can help you!
  2 件のコメント
Ang Feng
Ang Feng 2020 年 5 月 10 日
from R2020a, Matlab allows you export vector graphics by using the exportgraphics function
Chockalingam Senthilnathan
Chockalingam Senthilnathan 2021 年 4 月 7 日
Worked like a charm for vectorising my 2D view of a surface plot thank you

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by