stats_cdf_t

(PECL stats:1.0.0-1.0.2)

stats_cdf_t — Calculates any one parameter of the T distribution given values for the others.

Описание

float stats_cdf_t ( float $par1 , float $par2 , int $which )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Список параметров

par1

par2

which

Возвращаемые значения

Коментарии

Автор:
In order to match the output of this function with Excel's TDIST function, you must take 1 - the value.  For example, for a two-tailed T-distribution for x=4 and degrees of freedom=2, the formula would be:

(1 - stats_cdf_t(4, 2, 1)) * 2

For a single tail, do not include the multiply by 2 portion.
2010-10-14 17:14:09
http://php5.kiev.ua/manual/ru/function.stats-cdf-t.html
Автор:
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);
}
?>
2012-04-12 22:30:24
http://php5.kiev.ua/manual/ru/function.stats-cdf-t.html

    Поддержать сайт на родительском проекте КГБ