operator==,!=(std::normal_distribution)
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> template< class ResultType > bool operator==( const normal_distribution<ResultType>& lhs, const normal_distribution<ResultType>& rhs ); |
(1) | |
template< class ResultType > bool operator!=( const normal_distribution<ResultType>& lhs, const normal_distribution<ResultType>& rhs ); |
(2) | |
Vergleicht zwei Verteilung Objekte. Zwei Verteilungsobjekte gleich sind, wenn die Parameterwerte und internen Zustand entspricht .
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.
1)
Vergleicht zwei Vertriebs-Objekte auf Gleichheit .
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.
2)
Vergleicht zwei Vertriebs-Objekte auf Ungleichheit .
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.
Parameter
Rückgabewert
1)
true, wenn die Verteilung der Objekte gleich sind, false andersOriginal:
true if the distribution objects are equal, false otherwiseThe 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.
2)
true wenn die Verteilung Objekten nicht gleich sind, ansonsten falseOriginal:
true if the distribution objects are not equal, false otherwiseThe 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.
Komplexität
Constant .
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.
