Plotting multiple ecdf in one plot with specific line color and width
显示 更早的评论
I'm plotting ecdf for a matrix where I want to chose the line color and type per column. I have this code but not sure how to change the color with the code.
figure
hold on
lgd = cell(size(NPV_Mat,2),1) ;
for ki = 1:size(NPV_Mat,2)
ecdf(NPV_Mat(:,ki));
lgd{ki} = strcat('Field=',num2str(ffield(ki))) ;
end
These are the color type as below:
color = ('b--o', 'c*', '-o', '*','--',':', '-','-.')
Any help please
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Exploration and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!