downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

stats_cdf_gamma> <stats_cdf_exponential
[edit] Last updated: Fri, 26 Apr 2013

view this page in

stats_cdf_f

(PECL stats >= 1.0.0)

stats_cdf_fCalculates any one parameter of the F distribution given values for the others.

Description

float stats_cdf_f ( float $par1 , float $par2 , float $par3 , int $which )
Warning

This function is currently not documented; only its argument list is available.

Parameters

par1

par2

par3

which

Return Values



add a note add a note User Contributed Notes stats_cdf_f - [1 notes]
up
0
brjann (theat) gmail (thedot) com
5 years ago
Input  and return values of stats_cdf_t depends on the $which-parameter:
<?php
function get_t_p($t, $df){
   return
stats_cdf_t($t, $df, 1);
}

function
get_t_t($p, $df){
   return
stats_cdf_t($p, $df, 2);
}

function
get_t_df($p, $t){
   return
stats_cdf_t($p, $t, 3);
}
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites