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!

 Respuesta aceptada

Bruno Luong
Bruno Luong el 14 de Nov. de 2020
Editada: Bruno Luong el 14 de Nov. de 2020

0 votos

Check if all your data do not contain NaN, Inf or such.
all(isfinite(x(:))) && all(isfinite(yCI95(:))) && all(isfinite(yMean(:)))

Más respuestas (0)

Preguntada:

el 14 de Nov. de 2020

Comentada:

el 15 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by