Changing the legend color

6 ビュー (過去 30 日間)
Najam us Saqib Fraz
Najam us Saqib Fraz 2020 年 10 月 26 日
回答済み: Star Strider 2020 年 10 月 26 日
Hello Every one.I am using loop to get 14 plots at one figure.I need to have 14 legends.But the colours for the plot keep repeating.Please look at the picture.Is there any way I can get the separte color for each plot,or can get different nature of plot(dotted lines,dashed lines etc)

採用された回答

Star Strider
Star Strider 2020 年 10 月 26 日
Try something like this:
y = linspace(0,50,50); % Create Data
v = 1:14; % Number Of Curves
x = sin(v(:)*y*2*pi) + 2*v(:); % Create Data
cm = colormap(jet(numel(v))); % Define Color Map
figure
hold on
for k = 1:numel(v)
plot(x(k,:), y, 'Color',cm(k,:)) % Plot Each Vector According To The Colours In ‘cm’
end
hold off
The colours will not repeat unless you want them to do so. You can use any colormap you want, or you can create your own.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by