Randomize a marker color for a graph

1 次查看(过去 30 天)
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 个评论
Rik
Rik 2022-11-7
You don't actually index your array of letters. How do you expect Matlab to guess what you intended to do?

请先登录,再进行评论。

回答(1 个)

David Hill
David Hill 2022-11-7
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

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by