std::extreme_value_distribution<RealType>:: operator()
| Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data-parallel types (SIMD) (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Numeric array (
valarray
)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Bit manipulation (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Saturation arithmetic (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C-style checked integer arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Generation | ||||
|
extreme_value_distribution::operator()
|
||||
| Characteristics | ||||
| Non-member functions | ||||
|
(C++11)
(C++11)
(until C++20)
|
||||
|
(C++11)
(C++11)
|
|
template
<
class
Generator
>
result_type operator ( ) ( Generator & g ) ; |
(1) | (seit C++11) |
|
template
<
class
Generator
>
result_type operator ( ) ( Generator & g, const param_type & params ) ; |
(2) | (seit C++11) |
Erzeugt Zufallszahlen, die gemäß der zugehörigen Wahrscheinlichkeitsfunktion verteilt sind. Die Entropie wird durch Aufruf von g. operator ( ) erworben.
Die erste Version verwendet den zugehörigen Parametersatz, die zweite Version verwendet params . Der zugehörige Parametersatz wird nicht modifiziert.
Parameter
| g | - | ein Uniform-Random-Bit-Generator-Objekt |
| params | - | zu verwendender Verteilungsparametersatz anstelle des zugehörigen |
| Typanforderungen | ||
-
Generator
muss die Anforderungen von
UniformRandomBitGenerator
erfüllen.
|
||
Rückgabewert
Die generierte Zufallszahl.
Komplexität
Amortisiert konstante Anzahl von Aufrufen von g. operator ( ) .