Finding the t values of the Student's t test (t1-α,ν)
31 ビュー (過去 30 日間)
古いコメントを表示
I have both 1-α and i have v and i was wondering if there is a way to get the t-value directly in Matlab rather than reffering to the tables.
0 件のコメント
採用された回答
その他の回答 (1 件)
Edgar Guevara
2020 年 6 月 5 日
The t-value is inside the STAT structure, consider the following example:
X = rand([100, 1]);
Y = rand([100, 1]);
[H,P,CI,STATS] = ttest2(X,Y);
STATS.tstat
参考
カテゴリ
Help Center および File Exchange で Analysis of Variance and Covariance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!