std::lognormal_distribution::lognormal_distribution
De cppreference.com
< cpp | numeric | random | lognormal distribution
![]() |
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 lognormal_distribution( RealType m = 0.0, RealType s = 1.0 ); |
(1) | (desde C++11) |
explicit lognormal_distribution( const param_type& params ); |
(2) | (desde C++11) |
Construye un objeto de distribución. La primera versión utiliza
m
y s
como los parámetros de distribución, la segunda versión utiliza params
como los parámetros de distribución .Original:
Constructs a new distribution object. The first version uses
m
and s
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.
[editar] Parámetros
m | - | la m parámetro de distribución (escala logarítmica)
Original: the m distribution parameter (log-scale) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
s | - | el parámetro s de distribución (forma)
Original: the s distribution parameter (shape) 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. |