Effacer les filtres
Effacer les filtres

How do I use >7 colours on a scatter plot?

1 vue (au cours des 30 derniers jours)
Andy
Andy le 4 Juin 2016
Commenté : Walter Roberson le 5 Juin 2016
Hi guys,
I have 62 time-distance plots (all stored in 'Picks' =[t,d,62] ) and want to display them together; But I can only produce a plot with a max of 7 colours (plot attached).
is there (i) a way to get 62 colours or better (ii) a way I can change plot symbol every 7 colours? (eg ., X, * ... so I dont reuse the same markers)
this is my code
for i = 1:62;
scatter(Picks(:,2,i), Picks(:,1,i),'.');
hold on ;
leg{i}=['FFID',num2str(i+365)];L{i}=i;
end;
a=~isnan(cell2mat(L)); l=leg(a); legend(l); hold off
Any help would be really appreciated! Thank you
Andy

Réponses (1)

Walter Roberson
Walter Roberson le 4 Juin 2016
pointsize = 25;
scatter(Picks(:,2,i), Picks(:,1,i), pointsize, i, '.');
and after
colormap(jet(62))
The i will be used as the colormap index.
  2 commentaires
Andy
Andy le 5 Juin 2016
Modifié(e) : Andy le 5 Juin 2016
Thank you so much for helping! I completely see you're idea here, it makes sense - but I always get
"C must be a single color, a vector of the same length as X, or an M-by-3 matrix."
if this is the modified code;
pointsize = 25;
for i = 1:62
scatter(Picks(:,2,i), Picks(:,1,i),pointsize,i)
hold on
leg{i}=['FFID',num2str(i+365)];L{i}=i; % Assigning FFID to shot
end
colormap(jet(62))
'pointsize' works fine, the 'i' for c does not.
Walter Roberson
Walter Roberson le 5 Juin 2016
col = repmat(i, size(Picks,1), 1);
scatter(Picks(:,2,i), Picks(:,1,i), pointsize, col);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Scatter 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