Apply a color map to a 2d line

89 Ansichten (letzte 30 Tage)
Nigel Davis
Nigel Davis am 17 Mai 2022
Kommentiert: Nigel Davis am 17 Mai 2022
Hi
My code outputs a line graph from an array as seen below.
I need to apply a simple colourmap, say from blue to green for example, to this line from another set of values.
I think I can create the required colourmap but I don't know how to apply it to the line!
Any assistance would be greatly appriciated.
Thanks.
line(lans(1,:),1:61,'LineWidth',10)

Akzeptierte Antwort

KSSV
KSSV am 17 Mai 2022
Read about patch
x = linspace(1,10,15);
y = sin(x);
y(end) = NaN;
c = y;
figure
patch(x,y,c,'EdgeColor','interp');
colorbar;
  1 Kommentar
Nigel Davis
Nigel Davis am 17 Mai 2022
Wow thats looks like what I'm after.
I really appreciate the help, thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by