Finding the t values of the Student's t test (t1-α,ν)
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ahmed Abdulla
el 5 de Jun. de 2020
Respondida: Jeff Miller
el 5 de Jun. de 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 comentarios
Respuesta aceptada
Más respuestas (1)
Edgar Guevara
el 5 de Jun. de 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
Ver también
Categorías
Más información sobre Analysis of Variance and Covariance en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!