Plotting average value with max-min area

8 visualizaciones (últimos 30 días)
Marco Gualtieri
Marco Gualtieri el 2 de Dic. de 2021
Comentada: Marco Gualtieri el 3 de Dic. de 2021
Hello everyone,
I am having some trouble with MATLAB plots. I have successfully created an array
Cn_range=zeros(3,11);
and I filled it with minimum values in the first line, average values in the second line and maximum values in the third. What I need to plot is a solid line with the average values and a "shaded" range behind that, the boundaries of which are defined by the max and min values. I know all the "hold on" stuff, but I cannot find a plotting function for the shaded range behind. Is there anything that I could use to do that?
Thank you in advance for your attention and help.

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 2 de Dic. de 2021
Editada: KALYAN ACHARJYA el 2 de Dic. de 2021
c_color=['r','m','y'];
for i=3:-1:1
p=Cn_range(i,:);
plot(p);
area(p,'FaceColor',c_color(i));
hold on;
end
Example:
Hope it helps!
  3 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 3 de Dic. de 2021
Editada: KALYAN ACHARJYA el 3 de Dic. de 2021
"the only issue is that I would like the colored area to have its center in the average value"
Yes, just get the average of the particular rows and plot with marker
"not to start from 0"
The shown plot just an example, please use axis tight funtion to fit the axes as per data.
axis tight
Hope I understand your question.
Marco Gualtieri
Marco Gualtieri el 3 de Dic. de 2021
Thank you again for your answer, maybe I didn't explain myself too well. I am trying to obtain something like what you can see in the attached image.

Iniciar sesión para comentar.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by