for 循环中的绘图和同一循环中的图例颜色不匹配。我怎样才能让他们对应起来。 MATLAB
for j= 1:numfiles;
plot(A(j,:))
legendmatrix{j,1}=strcat('Run',num2str(j))
hold all
end
legend(legendmatrix)
hold all
允许我为所有曲线设置不同的颜色。但是,当我使用 strcat
中的字符串并将它们显示在绘图上时,没有使用足够的颜色,并且它们没有分配给相应的曲线。
在这种情况下,图 1 在图例中运行 1,等等...并且我希望颜色匹配
for j= 1:numfiles;
plot(A(j,:))
legendmatrix{j,1}=strcat('Run',num2str(j))
hold all
end
legend(legendmatrix)
hold all
allows me to have different colors for all my curves. However when I use the strings from strcat
and display them on the plot, not enough colors are used and they are not assigned to the corresponding curve.
In this case plot 1 is run 1 in the legend, etc... and I want the colors to match
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是一个稍有不同的示例:
请注意,如果 N>7,则 LINES 颜色图将开始重复颜色,但您始终可以指定自己的颜色集...您还可以使用不同标记的选项和线条样式以获得视觉上更清晰的数据。
Here is a slightly different example:
Note that if N>7, the LINES colormap will start to repeat colors, but you can always specify your own set of colors... You also have the option of using different markers and line-styles to get more visually distinct data.
使用下面的 Amros 示例,使数据更易于概念可视化,并使用 jet 颜色图来支持 7 种以上不同的颜色:
正如您从结果中看到的,图例是正确的,您可以绘制更多线条:
Used Amros example below and made the data easier for visualization of concept and used jet colormap instead to support more than 7 different colors:
As you can see from the results, the legend is correct, and you can plot a lot more lines: