std::negative_binomial_distribution::negative_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. |
| explicit negative_binomial_distribution( IntType k = 1, double p = 0.5 ); |
(1) | (seit C++11) |
| explicit negative_binomial_distribution( const param_type& params ); |
(2) | (seit C++11) |
Erzeugt ein neues Vertriebs-Objekt. Die erste Version verwendet
k und p wie die Verteilung der Parameter, verwendet die zweite Version params wie die Verteilungsparameter .Original:
Constructs a new distribution object. The first version uses
k 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.
[Bearbeiten] Parameter
| k | - | die k Verteilung Parameter (Anzahl der Studie Ausfälle)
Original: the k distribution parameter (number of trial failures) 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. |
[Bearbeiten] Notes
Erfordert, dass 0 < p ≤ 1 und 0 < k .
Original:
Requires that 0 < p ≤ 1 and 0 < k.
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.
Die Standard-konstruiert
std::negative_binomial_distribution entspricht dem Standard aufgebauten std::geometric_distribution .Original:
The default-constructed
std::negative_binomial_distribution is equivalent to the default-constructed std::geometric_distribution.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.