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

Verlauf / Chronik / History: (50) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenStatisticsStatistic Funktionenstats_cdf_t

Ein Service von Reinhard Neidl - Webprogrammierung.

Statistic Funktionen

<<stats_cdf_poisson

stats_cdf_uniform>>

stats_cdf_t

(PECL stats >= 1.0.0)

stats_cdf_tCalculates any one parameter of the T distribution given values for the others.

Beschreibung

float stats_cdf_t ( float $par1 , float $par2 , int $which )
Warnung

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

Parameter-Liste

par1

par2

which

Rückgabewerte


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Brian
14.10.2010 23:14
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.



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",...)