plotting multiple graphs in different colors with a single command

1 次查看(过去 30 天)
Hi,
I have a matrix of size 500 x 11, each column represents a particle evolving over time (rows). I want to plot all particles in a single command,
for n = 1:11
plot(1:length, [distance_from_herder(1:length,n)])
hold on
end
But I want each plot to have a separate colour from each other. How do I add the colors in this command?
  1 个评论
Stephen23
Stephen23 2017-8-9
"But I want each plot to have a separate colour from each other."
That is exactly what plot does when you call it once with the required data. Did you try that?

请先登录,再进行评论。

回答(1 个)

José-Luis
José-Luis 2017-8-9
编辑:José-Luis 2017-8-9
plot(distance_from_herder(1:length,1:11));
Please read the documentation.

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by