Effacer les filtres
Effacer les filtres

Plotting different line colors within subplots avoiding duplicate colors?

12 vues (au cours des 30 derniers jours)
Conal Doyle
Conal Doyle le 28 Juin 2013
subplot(2,2,3)
plot(Volume_Major,'LineWidth',2,'color',C);
title ('Evolution of Volume week by week');
xlabel('Time');
ylabel('Volume');
set(gca,'XTick',XTicks);
set(gca,'XTickLabel',XLabels);
legend('EURUSD','EURGBP','EURJPY','USDJPY','GBPUSD','USDCHF','USDCAD','AUDUSD','NZDUSD')
where C is a predefined set {[0 0 1],[1 0.4 0.6],[0 1 1],[1 0 0],[0 1 0],[1 0 1],[0 0.5 0],[0.5 0.5 0.5],[0.7 0.3 0],[1 1 0]}
and Volume_Major is a matrix.
When I plot this I find that an error occurs in the plot. When I change the plot function to plot(Volume_Major,'LineWidth',2), it plots perfectly but colors are duplicated. How do I avoid this?

Réponse acceptée

Tom
Tom le 28 Juin 2013
h = plot(Volume_Major,'LineWidth',2)
set(h,{'Color'},C')

Plus de réponses (2)

Walter Roberson
Walter Roberson le 28 Juin 2013
h = plot(Volume_Major,'LineWidth',2);
for K = 1 : length(h)
set(h(K), 'LineColor', C(K,:));
end

Tom
Tom le 28 Juin 2013
Or:
set(gca,'NextPlot','ReplaceChildren','ColorOrder',cell2mat(C'))
plot(Volume_Major,'LineWidth',2)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by