May I ask how I can find 95% confidence interval of skew_FP() from these codes?

1 visualización (últimos 30 días)
rng(1000)
nn=143;
for n=1:1000;
r=rand(nn,1);
ss(n)=std(r);
m(n)=mean(r);
med(n)=median(r);
nu(n)=numel(r)
skew_FP(n) = sum((r-m(n)).^3)/(nn-1)/ss(n).^3
end
hist(skew_FP())
xlabel('Skew_FP()')
ylabel('Frequency')

Respuesta aceptada

Jeff Miller
Jeff Miller el 30 de Oct. de 2022
LBUB = prctile(skew_FP(),[2.5,97.5]);

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by