6 lines
177 B
C
Executable File
6 lines
177 B
C
Executable File
/*
|
|
* 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);
|