May I ask how I can find 95% confidence interval of skew_FP() from these codes?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Chris
le 30 Oct 2022
Réponse apportée : Jeff Miller
le 30 Oct 2022
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')
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!