reverse jet colours on my lines

19 ビュー (過去 30 日間)
Yuktha Andie Ravinthiran
Yuktha Andie Ravinthiran 2022 年 2 月 17 日
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

採用された回答

Image Analyst
Image Analyst 2022 年 2 月 17 日
colors = flipud(jet(10)); % Flip up down.
  1 件のコメント
Yuktha Andie Ravinthiran
Yuktha Andie Ravinthiran 2022 年 2 月 17 日
Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by