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);
}
?>
stats_cdf_f
(PECL stats >= 1.0.0)
stats_cdf_f — F 分布のパラメータのいずれかを、その他のパラメータの値から計算する
説明
float stats_cdf_f
( float
$par1
, float $par2
, float $par3
, int $which
)警告
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
パラメータ
-
par1 -
-
par2 -
-
par3 -
-
which -
返り値
brjann (theat) gmail (thedot) com
06-Oct-2007 06:18
