Remove edges in pdegplot
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tom Dillon
le 14 Juil 2021
Modifié(e) : Cris LaPierre
le 14 Juil 2021
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 commentaires
Réponse acceptée
Cris LaPierre
le 14 Juil 2021
Modifié(e) : Cris LaPierre
le 14 Juil 2021
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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur General PDEs dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
