Randomize a marker color for a graph

2 visualizaciones (últimos 30 días)
Amanda
Amanda el 7 de Nov. de 2022
Respondida: David Hill el 7 de Nov. de 2022
im trying to randomize a color of a marker but it keeps giving me an error and even if i write out the full color it still doesnt work. i dont know how to fix this.
  1 comentario
Rik
Rik el 7 de Nov. de 2022
You don't actually index your array of letters. How do you expect Matlab to guess what you intended to do?

Iniciar sesión para comentar.

Respuestas (1)

David Hill
David Hill el 7 de Nov. de 2022
m='o+*.x';
c='rgbcmyk';
x=randi(20,1,8);
y=randi(20,1,8);
figure;hold on;
for n=1:length(x)
scatter(x(n),y(n),'LineWidth',rand*8,'MarkerEdgeColor',c(randi(7)),'MarkerFaceColor',...
c(randi(7)),'Marker',m(randi(5)));
end

Categorías

Más información sobre Creating and Concatenating Matrices 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