shade area between graphs

2 601 vues (au cours des 30 derniers jours)
Michiel
Michiel le 28 Fév 2015
Commenté : Star Strider le 29 Fév 2024 à 21:35
I want to shade the area between these graphs
but this certainly does not do the trick:
fill([t t(end:-1:1)],[y1 y2(end:-1:1)],'y')
I also downloaded and tried "jblill"
but that did not seem to amend the outcome so far
  2 commentaires
Huijian Huang
Huijian Huang le 15 Déc 2017
have you solve this problem at the end? I am also struggling with similar situation
Image Analyst
Image Analyst le 15 Déc 2017
Yes, there were answers below, one of which he accepted though both should work.

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 28 Fév 2015
Try using fill() instead of area():
x = 1 : 300;
curve1 = log(x);
curve2 = 2*log(x);
plot(x, curve1, 'r', 'LineWidth', 2);
hold on;
plot(x, curve2, 'b', 'LineWidth', 2);
x2 = [x, fliplr(x)];
inBetween = [curve1, fliplr(curve2)];
fill(x2, inBetween, 'g');
  12 commentaires
Image Analyst
Image Analyst le 17 Juin 2022
@MadjeKoe simply don't call plot() and only call fill().
Jason Thomas
Jason Thomas le 29 Fév 2024 à 18:54
Hoping this post from 9 years ago is still monitored.
I tried the suggestion above, but instead of filling the area green, it just added thin black lines at the upper and lower bounds. What am I missing?
plot(averageFF2W5I(:,2),averageFF2W5I(:,1), 'k', 'LineWidth', 2);
plot(averageFF2W5I(:,2),averageFF2W5I(:,[8 9]), 'k--', 'LineWidth', 2);
fill([averageFF2W5I(:,2), fliplr(averageFF2W5I(:,2))], [averageFF2W5I(:,8), fliplr(averageFF2W5I(:,9))], 'g');
averageFF2W5I(:,2) = Strain Values
averageFF2W5I(:,1) = Stress Sample Mean
averageFF2W5I(:,[8 9]) = 95% Confidence Interval

Connectez-vous pour commenter.

Plus de réponses (3)

Star Strider
Star Strider le 28 Fév 2015
Modifié(e) : Star Strider le 28 Fév 2015
Try this:
x = linspace(0,10*pi);
y1 = sin(x);
y2 = cos(x);
figure(1)
plot(x, y1)
hold on
plot(x, y2)
patch([x fliplr(x)], [y1 fliplr(y2)], 'g')
hold off
Experiment with your data to get the result you want.
  10 commentaires
Jason Thomas
Jason Thomas le 29 Fév 2024 à 20:14
@Star Strider THANK YOU!
There were several NaN values in the confidence interval. Once I removed those with rmmissing and used your code with "flip" instead of "fliplr" it worked perfectly.
Star Strider
Star Strider le 29 Fév 2024 à 21:35
My pleasure!
A Vote would be appreciated!

Connectez-vous pour commenter.


Javier Montalt Tordera
Javier Montalt Tordera le 12 Avr 2019
This can be simplified using the function shade (in MATLAB File Exchange).
The syntax for the above problem would be:
shade(t,y1,t,y2,'FillType',[1 2;2 1]);
The FillType option specifies that the area between lines 1 and 2 should be filled, whether 1 is above 2 or the other way round.
  5 commentaires
Image Analyst
Image Analyst le 19 Mai 2022
@Giacomo Giuliani, yes though to not cover the line plots you might plot (or re-plot) the line plots after you've plotted the patches between the curves.
Giacomo Giuliani
Giacomo Giuliani le 19 Mai 2022
Modifié(e) : Giacomo Giuliani le 19 Mai 2022
It came to my minds one second after I posted. It works! Thanks.

Connectez-vous pour commenter.


Adam Danz
Adam Danz le 29 Jan 2024
Another solution that may be helpful is the fillBetweenAreaCurve function offered by the MATLAB Charting team on the File Exchange.
  1 commentaire
Les Beckham
Les Beckham le 29 Fév 2024 à 20:25
FYI - it appears that this File Exchange utility requires the Mapping Toolbox.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Discrete Data 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!

Translated by