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

1 回表示 (過去 30 日間)
Chris
Chris 2022 年 10 月 30 日
回答済み: Jeff Miller 2022 年 10 月 30 日
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')

採用された回答

Jeff Miller
Jeff Miller 2022 年 10 月 30 日
LBUB = prctile(skew_FP(),[2.5,97.5]);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by