Is it possible to calculate the tail probablitlies of the chi-square distribution in MATLAB 7.11 (R2010b)?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to compute 1-chi2cdf(x,d) and the tail probability of a chi-square PDF. The function CHI2CDF cancels its value when its value is close to 1. In many cases I would like to have this value as I desire to set a threshold that is less than eps, machine epsilon.
0 件のコメント
回答 (1 件)
Michael
2011 年 1 月 18 日
You can get the upper tail probablities for the chi-square distribution uisng the code below:
chi2pval = @(x,nu) gammainc(x/2,v/2,'upper');
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!