std::poisson_distribution::poisson_distribution
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
explicit poisson_distribution( double mean = 1.0 ); |
(1) | (desde C++11) |
explicit poisson_distribution( const param_type& params ); |
(2) | (desde C++11) |
Construye un objeto de distribución. La primera versión utiliza
mean como el parámetro de distribución, la segunda versión utiliza params como el parámetro de distribución .Original:
Constructs a new distribution object. The first version uses
mean 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.
Parámetros
| mean | - | la μ' parámetro de distribución (la media de la distribución)
Original: the μ distribution parameter (the mean of the distribution) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| params | - | el parámetro de distribución establecido
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. |
Notas
Requiere que 0 < mean .
Original:
Requires that 0 < mean.
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.