Info
此问题已关闭。 请重新打开它进行编辑或回答。
theoric vs empiric PDF & CDF
1 次查看(过去 30 天)
显示 更早的评论
hello guys, i want to know if there is a better way to compare the empiric PDF to the theoric PDF of a normal distribution sample (i know that histfit is a good way but my goal is to have two curves in the same plot), same thing for CDF. So i have a time series data x (1 column vector) and i want to see how it matchs with the normal distribution
%%PDF
xval = min(x):.01:max(x);
[muhat,sigmahat] = normfit(x);
yval = normpdf(xval,muhat,sigmahat);
plot(xval,yval) %theoric PDF
hold on
ksdensity(x) %empirical PDF
%%CDF
xval = min(x):.01:max(x);
f = evcdf(xval,muhat,sigmahat);
plot(xval,f,'m') %theoric CDF
hold on
cdfplot(x) %empirical CDF
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!