operator==,!=(std::normal_distribution)
Da 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. |
template<class ResultType > bool operator==(const normal_distribution<ResultType>& lhs, | (1) | |
template<class ResultType > bool operator!=(const normal_distribution<ResultType>& lhs, | (2) | |
Compara dois objetos de distribuição. Dois objetos de distribuição são iguais quando os valores dos parâmetros e estado interno é o mesmo.
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.
Compara dois objetos de distribuição para a igualdade.
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.
Compara dois objetos de distribuição para a desigualdade.
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.
[editar]Parâmetros
lhs, rhs | - | distribuição de objetos para comparar 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. |
[editar]Valor de retorno
1)true se os objectos de distribuição são iguais, false contrário
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 os objectos de distribuição não são iguais, false contrário
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.
[editar]Complexidade
Constante.
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.