How to set 'shading' to 'interp' on a specific plot within a figure
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Laurence hutton-smith
le 2 Juin 2015
Commenté : Laurence hutton-smith
le 3 Juin 2015
I am trying to create a figure with multiple types of plots within it, I have a surf plot in the figure which I would like to apply 'shading interp', however if I try to just add the line 'shading interp' I receive the error 'Error creating or updating Patch' and it does not plot. However simply applying this to a plot of only the surf does work, is there a way I can specify I only want to change the shading on specific plots inside a figure?
Thanks in advance!
0 commentaires
Réponse acceptée
Walter Roberson
le 2 Juin 2015
Record the handle of the surf:
sh = surf(....);
then
set(sh, 'EdgeColor', 'interp', 'FaceColor', 'interp');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!