reverse jet colours on my lines

15 Ansichten (letzte 30 Tage)
Yuktha Andie Ravinthiran
Yuktha Andie Ravinthiran am 17 Feb. 2022
hold on
set(groot,'defaultLineLineWidth',1.5)
ex = xlsread(p2,'emission','E2:E37');
ey = xlsread(p2,'emission','C2:C361');
eyy = reshape(ey,[36,10])';
colors = jet(10);
hold on
for i = 1:10
plot(eyy(i,:), "color", colors(i,:))
end
hold off
I want the colour of the lines to be reversed so that the current blue line is red and current red line is blue

Akzeptierte Antwort

Image Analyst
Image Analyst am 17 Feb. 2022
colors = flipud(jet(10)); % Flip up down.

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