cpp/numeric/random/student t distribution: Unterschied zwischen den Versionen
Aus cppreference.com
(Translated from the English version using Google Translate) |
P12 (Diskussion | Beiträge) K (1 Version: Translate from the English version) |
Version vom 25. Oktober 2012, 14:58 Uhr
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <random>
|
||
template< class RealType = double > class student_t_distribution; |
(seit C++11) | |
Erzeugt zufällige Fließkommawerte x, verteilt nach Wahrscheinlichkeitsdichtefunktion:
Original:
Produces random floating-point values x, distributed according to probability density function:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
- P(x|n) =
·1 √nπ
· ⎛Γ(
)n+1 2 Γ(
)n 2
⎜
⎝1+
⎞x2 n
⎟
⎠ -n+1 2
wo n ist als die Anzahl der Freiheitsgrade' bekannt. Diese Verteilung wird verwendet, wenn die Schätzung der bedeutet von einem unbekannten normal verteilt Wert angegeben n+1 unabhängigen Messungen mit jeweils additive Fehler unbekannter Standardabweichung, wie in physikalischen Messungen. Oder alternativ, bei der Schätzung der unbekannten Mittelwert einer Normalverteilung mit unbekannter Standardabweichung, da n+1 Proben .
Original:
where n is known as the number of degrees of freedom. This distribution is used when estimating the mean of an unknown normally distributed value given n+1 independent measurements, each with additive errors of unknown standard deviation, as in physical measurements. Or, alternatively, when estimating the unknown mean of a normal distribution with unknown standard deviation, given n+1 samples.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Mitglied Typen
Mitglied Typ
Original: Member type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Definition |
result_type
|
RealType |
param_type
|
die Art des Parametersatzes, nicht näher bezeichnet
Original: the type of the parameter set, unspecified The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Member-Funktionen
Original: Generation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
Original: Characteristics The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Non-Member-Funktionen
Beispiel
This section is incomplete Reason: no example |
Externer Links
Weisstein, Eric W. "Student's t-Distribution." Von MathWorld - A Wolfram Web Resource .
Original:
Weisstein, Eric W. "Student's t-Distribution." From MathWorld--A Wolfram Web Resource.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.