Effacer les filtres
Effacer les filtres

Plotting average value with max-min area

8 vues (au cours des 30 derniers jours)
Marco Gualtieri
Marco Gualtieri le 2 Déc 2021
Commenté : Marco Gualtieri le 3 Déc 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.

Réponses (1)

KALYAN ACHARJYA
KALYAN ACHARJYA le 2 Déc 2021
Modifié(e) : KALYAN ACHARJYA le 2 Déc 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 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 3 Déc 2021
Modifié(e) : KALYAN ACHARJYA le 3 Déc 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 le 3 Déc 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.

Connectez-vous pour commenter.

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by