different colour combinations in matlab
1 view (last 30 days)
Show older comments
how to plot 20 different points in the plot in 20 different colours?
0 Comments
Answers (2)
Chad Greene
on 13 Aug 2014
Use scatter. The syntax is scatter(x,y,Size,Colors). Size is the size of the markers and Colors can be 20 rgb values as in Example 1 here .
0 Comments
Amir
on 13 Aug 2014
Sindhu, use this code:
x=[1:20]./7;
y=sin(x);
hold on
for i=1:length(x)
plot(x(i),y(i),'*',...
'color', rand(1,3))
end
0 Comments
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!