Plotting with different colors
2 次查看(过去 30 天)
显示 更早的评论
Hi everyone, i want to plot these graphs wtih different colors as at the moment all of them are black. This plot command is inside the loop, each time it plots one curve on the figure window. So i want each time it plots the graph with different color. Thank you so much.
plot(ITstore,bptime,'-k','LineWidth',2);
0 个评论
采纳的回答
Image Analyst
2014-10-10
You might check out this similar discussion: http://www.mathworks.com/matlabcentral/answers/158091-automating-line-markers-colors
更多回答(1 个)
Azzi Abdelmalek
2014-10-10
Don't specify the color k
plot(ITstore,bptime,'-','LineWidth',2)
2 个评论
Azzi Abdelmalek
2014-10-10
Look at this example
x=linspace(0,10,100);
y=[sin(x)' cos(x)']
plot(x,y,'-')
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!