Obtaining the standard normal z score
71 ビュー (過去 30 日間)
古いコメントを表示
Is there an easy way to obtain the standard normal z score with an upper tail probability of 0.05/2 or any number at hand
0 件のコメント
採用された回答
Star Strider
2020 年 7 月 16 日
Try this:
z = norminv(1-0.05/2)
producing:
z =
1.9600
Without the Statistics and Machine Learning Toolbox:
CV = @(alpha) -sqrt(2) * erfcinv(2*alpha); % Equivalent to ‘norminv’
z = CV(1-0.05/2)
producing the same result.
.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Hypothesis Tests についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!