how plot complementary cumulative density function (CCDF) of data points?
5 次查看(过去 30 天)
显示 更早的评论
suppose i have data points as:
a=2.3;
b=5.3;
n=2000; % number of data blocks
data=a+(b-a)*rand(1,1000); % data points
x=[1:.1:7]; % x-axis
How to plot the Complementary Cumulative Density Function (CCDF) of this data for such 2000 data blocks ? Any help.
0 个评论
回答(1 个)
Ben Petschel
2013-11-12
If you have the stats toolbox:
ecdf(data,'function','survivor')
will plot the CCDF.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!