Missing patch face color
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi there
I am trying to add FaceColor property to a patch, but I must be missing something as only the edges are showing up.
The patch is the 95% confidence interval for a line (to be added later).
My code snippet is:
h = patch([x fliplr(x)], [yCI95(1,:)+yMean fliplr(yCI95(2,:)+yMean)],'b');
Which gives me a line outline of the confidence interval (in black) but no face colour (see plot attached)
I would really appreciate some pointers. I haven't been able to make much of the 'patch' MATLAB pages, and comparing with lines of code in which the patch face colour worked has not clarified the issue for me. Many thanks in advance everyone!
0 commentaires
Réponse acceptée
Bruno Luong
le 14 Nov 2020
Modifié(e) : Bruno Luong
le 14 Nov 2020
Check if all your data do not contain NaN, Inf or such.
all(isfinite(x(:))) && all(isfinite(yCI95(:))) && all(isfinite(yMean(:)))
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots 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!