std::lognormal_distribution::lognormal_distribution
Da cppreference.com.
< cpp | numeric | random | lognormal distribution
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
explicit lognormal_distribution( RealType m = 0.0, RealType s = 1.0 ); |
(1) | (dal C++11) |
explicit lognormal_distribution( const param_type& params ); |
(2) | (dal C++11) |
Costruisce un nuovo oggetto di distribuzione. La prima versione utilizza
m
e s
come i parametri di distribuzione, la seconda versione utilizza params
come i parametri di distribuzione.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.
[modifica] Parametri
m | - | la m parametro di distribuzione (scala logaritmica)
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 | - | la s parametro di distribuzione (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 | - | il parametro di distribuzione predisposto
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. |