Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
Andy
Andy el 4 de Jun. de 2016
Comentada: Walter Roberson el 5 de Jun. de 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

Respuestas (1)

Walter Roberson
Walter Roberson el 4 de Jun. de 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 comentarios
Andy
Andy el 5 de Jun. de 2016
Editada: Andy el 5 de Jun. de 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 el 5 de Jun. de 2016
col = repmat(i, size(Picks,1), 1);
scatter(Picks(:,2,i), Picks(:,1,i), pointsize, col);

Iniciar sesión para comentar.

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by