Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

theoric vs empiric PDF & CDF

1 visualización (últimos 30 días)
jean claude
jean claude el 5 de Dic. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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

Respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by