Statistic 函数
在线手册:中文  英文

stats_cdf_f

(PECL stats >= 1.0.0)

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

说明

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

本函数还未编写文档,仅有参数列表。

参数

par1

par2

par3

which

返回值


Statistic 函数
在线手册:中文  英文

用户评论:

brjann (theat) gmail (thedot) com (2007-10-06 06:18:56)

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$df1);
}

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

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

易百教程