std::normal_distribution::normal_distribution
De cppreference.com
< cpp | numeric | random | normal distribution
![]() |
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 normal_distribution( RealType mean = 0.0, RealType stddev = 1.0 ); |
(1) | (depuis C++11) |
explicit normal_distribution( const param_type& params ); |
(2) | (depuis C++11) |
Construit un objet de distribution. La première version utilise
mean
et stddev
que les paramètres de la distribution, la deuxième version utilise params
que les paramètres de la distribution .Original:
Constructs a new distribution object. The first version uses
mean
and stddev
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.
[modifier] Paramètres
mean | - | μ le paramètre de distribution' (moyenne)
Original: the μ distribution parameter (mean) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
stddev | - | le paramètre de distribution σ' (écart-type)
Original: the σ distribution parameter (standard deviation) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
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. |