Borrar filtros
Borrar filtros

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

4 visualizaciones (últimos 30 días)
Elizabeth Lees
Elizabeth Lees el 6 de En. de 2019
Comentada: Star Strider el 8 de En. de 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))

Respuesta aceptada

Star Strider
Star Strider el 6 de En. de 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 comentarios
Elizabeth Lees
Elizabeth Lees el 8 de En. de 2019
thank you, worked perfectly!
Star Strider
Star Strider el 8 de En. de 2019
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by