std::binomial_distribution::binomial_distribution
Aus cppreference.com
|
|
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. |
<metanoindex/>
<tbody> </tbody> explicit binomial_distribution( IntType t = 1, double p = 0.5 ); |
(1) | (seit C++11) |
explicit binomial_distribution( const param_type& params ); |
(2) | (seit C++11) |
Erzeugt neue Verteilung Objekt. Die erste Version verwendet
t und p wie die Verteilung der Parameter, verwendet die zweite Version params wie die Verteilungsparameter .Original:
Constructs new distribution object. The first version uses
t and p as the distribution parameters, the second version uses params as the distribution parameters.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.
Parameter
| t | - | die t Verteilung Parameter (Anzahl der Versuche)
Original: the t distribution parameter (number of trials) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| p | - | die p Verteilungsparameter (Wahrscheinlichkeit einer Studie generierenden
true)Original: the p distribution parameter (probability of a trial generating true)The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| params | - | die Verteilung Parameter eingestellt
Original: the distribution parameter set The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Notes
Erfordert, dass 0 ≤ p ≤ 1 und 0 ≤ t .
Original:
Requires that 0 ≤ p ≤ 1 and 0 ≤ t.
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.