Remove edges in pdegplot
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I was wondering if it is possible to remove edges / make the edges of a PDEG plot transparent in some way? When I use the command
pdegplot(model,'FaceLabels','off','EdgeAlpha',0) or similar, MATLAB does not recognize the EdgeAlpha command. Thanks
Best
Tom
0 件のコメント
採用された回答
Cris LaPierre
2021 年 7 月 14 日
編集済み: Cris LaPierre
2021 年 7 月 14 日
There is no EdgeAlpha property to set.
Consider capturing the graphics handle and using that to set the line color in your plot to 'none'.
model = createpde;
importGeometry(model,'BracketWithHole.stl');
h = pdegplot(model,'FaceLabels','off','FaceAlpha',0.5)
% Use h(2) to access the line properties
h(2).Color = 'none';
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で General PDEs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
