Finding the t values of the Student's t test (t1-α,ν)
32 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ahmed Abdulla
il 5 Giu 2020
Risposto: Jeff Miller
il 5 Giu 2020
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 Commenti
Risposta accettata
Più risposte (1)
Edgar Guevara
il 5 Giu 2020
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
Vedere anche
Categorie
Scopri di più su Analysis of Variance and Covariance in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!