how can I fill between two plot lines from a matrix?

1 vue (au cours des 30 derniers jours)
Elizabeth Lees
Elizabeth Lees le 6 Jan 2019
Commenté : Star Strider le 8 Jan 2019
Have loaded in my data and wanting the area between the two lines to be filled in. Lines have different values, not just flipped values! Code is below, thanks in advance.
naturalised=load('naturalised.csv')
max=plot(naturalised(:,1),naturalised(:,3))
min=plot(naturalised(:,1),naturalised(:,4))

Réponse acceptée

Star Strider
Star Strider le 6 Jan 2019
You did not post your data, so we can only guess what ‘naturalised’ is, although we can correctly assume that you are plotting columns of ‘naturalised’.
Try this:
figure
max=plot(naturalised(:,1),naturalised(:,3));
hold on
min=plot(naturalised(:,1),naturalised(:,4));
patch([max.XData, fliplr(min.XData)], [max.YData, fliplr(min.YData)], 'm')
hold off
grid
This worked with test data:
naturalised = [(0:20); zeros(1,21); 1+rand(1, 21); 3+rand(1,21)]';
It will probably work with your data as well.
  2 commentaires
Elizabeth Lees
Elizabeth Lees le 8 Jan 2019
thank you, worked perfectly!
Star Strider
Star Strider le 8 Jan 2019
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by