Student's t cdf
double tcdf( const double dT, double df, int iTail = TAILED_TEST_LOWER, int * nFail = NULL )
Returns the value for cumulative distribution function for T distribution
Ex1
void tcdf_ex1() { double dT[]= {0.25, 0.5, 0.75}; double df = 3; for(int ii = 0; ii<3; ii++) printf("%f %f: %f\n", dT[ii], df, tcdf(dT[ii],df)); }
origin.h