6 lines
177 B
C
6 lines
177 B
C
|
/*
|
||
|
* student_t_p_2tail returns the 2-tailed p-value for the student's t
|
||
|
* distribution with the given t and degrees of freedom
|
||
|
*/
|
||
|
float student_t_p_2tail(float t, float df);
|