SLICE: Hiding the edges of slice

60 ビュー (過去 30 日間)
AP
AP 2012 年 10 月 18 日
Dear All,
I have sliced the volume data using slice function. Now I want to hide the edges of its mesh. How can I achieve this by using Matlab commands? I tried the following but it did not work.
[x,y,z] = meshgrid(-2:.2:2,-2:.25:2,-2:.16:2);
v = x.*exp(-x.^2-y.^2-z.^2);
h = slice(x,y,z,v,1,[],[]);
set(h, 'Edges', 'NoLine')
The error I get is:
The name 'edges' is not an accessible property for an instance of class 'surface'.
Could someone help me?
Thanks,
Ahmad

採用された回答

Matt Fig
Matt Fig 2012 年 10 月 18 日
I am not sure if this is what you have in mind:
set(h,'edgecolor','none')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by