PHP Doku:: Calculates any one parameter of the F distribution given values for the others. - function.stats-cdf-f.html

Verlauf / Chronik / History: (43) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenStatisticsStatistic Funktionenstats_cdf_f

Ein Service von Reinhard Neidl - Webprogrammierung.

Statistic Funktionen

<<stats_cdf_exponential

stats_cdf_gamma>>

stats_cdf_f

(PECL stats >= 1.0.0)

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

Beschreibung

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

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

par1

par2

par3

which

Rückgabewerte


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
brjann (theat) gmail (thedot) com
6.10.2007 15:18
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);
}
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)