Different colors within each plot of subplot

In the sample code below, Y has 64 rows and each subplot has 8 2-D line plots in it (total 8 subplots). I want each of these 8 lines in each subplot to be of distinct colors. I have defined colors (8x3 matrix) but it is producing each subplot of different color and not lines within each subplot.
Sample code :
figure
for i = 1:8
subplot(2,4,i); plot(X,Y(i:8:end,:));
end

4 Kommentare

David Hill
David Hill am 2 Okt. 2019
I don't think you need to do anything with a color matrix. Executing the above code should give you different colors for each of the 8 lines in each subplot (at least it works for me that way).
David Hill:
If you look more carefully you will probably find that the eighth line is the same color as the first line.
HT
HT am 2 Okt. 2019
I think there are 7 default colors (8 including white) after which it starts repeating the colors.
No white -- no pure colors at all
>> get(gca,'ColorOrder')
ans =
0 0.447 0.741
0.85 0.325 0.098
0.929 0.694 0.125
0.494 0.184 0.556
0.466 0.674 0.188
0.301 0.745 0.933
0.635 0.078 0.184

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 2 Okt. 2019

0 Stimmen

cmap = copper(8); %or other color map
for i = 1:8
subplot(2,4,i); plot(X, Y(i:8:end,:), 'Color', cmap(i,:));
end

1 Kommentar

HT
HT am 2 Okt. 2019
I tried this but as I mentioned in the question, this generates subplots of different colors but same color in each sublpot (i.e.all 8 line plots within the subplot are same color). I want each lines within each plot to be different. Each subplot has 8 plots in it ---- plot(X, Y(i:8:end,:)

Melden Sie sich an, um zu kommentieren.

Produkte

Version

R2018a

Gefragt:

HT
am 2 Okt. 2019

Bearbeitet:

HT
am 4 Okt. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by