std::exponential_distribution::exponential_distribution
De 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 exponential_distribution( RealType lambda = 1.0 ); |
(1) | (depuis C++11) |
explicit exponential_distribution( const param_type& params ); |
(2) | (depuis C++11) |
Construit un objet de distribution. La première version utilise
lambda que le paramètre de distribution, la deuxième version utilise params que le paramètre de distribution .Original:
Constructs a new distribution object. The first version uses
lambda as the distribution parameter, the second version uses params as the distribution parameter.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.
Paramètres
| lambda | - | the λ distribution parameter (the rate parameter) |
| params | - | le paramètre de distribution défini
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
Exige que 0 < lambda .
Original:
Requires that 0 < lambda.
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.