cdfplot
9 次查看(过去 30 天)
显示 更早的评论
Dear all, I know this is easy for most of you but I am new for matlab and I need your help. I want to construct a commulative ditribution plot for my output say vector X and I used cdfplot(X). The problem is I want to set the values of x axix in cdfplot(X) other vector E. Can any one suggest me how. Thank you Abex
0 个评论
回答(2 个)
the cyclist
2012-2-10
I am not 100% sure I know what you mean, but is it something like this?
x = randn(1000,1);
cdfplot(x)
set(gca,'XTick',-3:3,'XTickLabel',{'q','w','e','r','t','y','!'})
0 个评论
Tom Lane
2012-2-10
Also not 100% sure, but consider using the ECDF function and plotting however you want. Also you could use those outputs with a function such as interp1 to evaluate the ecdf at other points, if you are satisfied with the interpolation methods available.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!