operator==,!=(std::poisson_distribution)
Da cppreference.com.
< cpp | numeric | random | poisson 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. |
template< class ResultType > bool operator==( const poisson_distribution<ResultType>& lhs, |
(1) | |
template< class ResultType > bool operator!=( const poisson_distribution<ResultType>& lhs, |
(2) | |
Confronta due oggetti di distribuzione. Due oggetti di distribuzione sono uguali quando i valori dei parametri e lo stato interno è lo stesso.
1) Original:
Compares two distribution objects. Two distribution objects are equal when parameter values and internal state is the same.
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.
Confronta due oggetti di distribuzione per la parità.
2) Original:
Compares two distribution objects for equality.
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.
Confronta due oggetti di distribuzione per la disuguaglianza.
Original:
Compares two distribution objects for inequality.
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
lhs, rhs | - | distribuzione di oggetti da confrontare
Original: distribution objects to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
1)true se gli oggetti di distribuzione sono uguali, false altrimenti
2) Original:
true if the distribution objects are equal, false otherwise
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.
true se gli oggetti di distribuzione non sono uguali, false altrimenti
Original:
true if the distribution objects are not equal, false otherwise
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] Complessità
Costante.
Original:
Constant.
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.