Plotting multiple ecdf in one plot with specific line color and width
조회 수: 50 (최근 30일)
이전 댓글 표시
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
채택된 답변
N S
2019년 11월 25일
It is necessary to capture the output of the Empirical cumulative distribution function so that you manage its rendering over a plot manually.
[f,x] = ecdf(y) returns the empirical cumulative distribution function (cdf), f, evaluated at the points in x, using the data in the vector y.
For example, for plotting in Red with line width of 3 and blacK using a line width of 2:
figure
hold on
[f1,x1]=ecdf(NPV_Mat1);
plot(x1,f1,'r','LineWidth',3)
[f2,x2]=ecdf(NPV_Mat2);
plot(x2,f2,'k','LineWidth',2)
hold off
Of course, you can use a for-loop to do it on a big number of variables.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!