Info

この質問は閉じられています。 編集または回答するには再度開いてください。

theoric vs empiric PDF & CDF

1 回表示 (過去 30 日間)
jean claude
jean claude 2017 年 12 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by