std::student_t_distribution::operator()
De cppreference.com
< cpp | numeric | random | student t 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. |
![]() | 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 Generator > result_type operator()( Generator& g ); | (1) | (depuis C++11) |
template<class Generator > result_type operator()( Generator& g, const param_type& params ); | (2) | (depuis C++11) |
Génère des nombres aléatoires qui sont distribués en fonction de la fonction de probabilité associée. L'entropie est acquise en appelant g.operator() .
Original:
Generates random numbers that are distributed according to the associated probability function. The entropy is acquired by calling g.operator().
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.
La première version utilise le jeu de paramètres associé, la deuxième version utilise
params
. L'ensemble de paramètres associés n'est pas modifié .Original:
The first version uses the associated parameter set, the second version uses
params
. The associated parameter set is not modified.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.
[modifier]Paramètres
g | - | un uniforme objet générateur de nombres aléatoires Original: an uniform random number generator object The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
params | - | paramètre de distribution configuré pour utiliser à la place de celui associé Original: distribution parameter set to use instead of the associated one The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier]Retourne la valeur
Le nombre aléatoire généré .
Original:
The generated random number.
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.
[modifier]Complexité
Amorti nombre constant d'invocations de g.operator() .
Original:
Amortized constant number of invocations of g.operator().
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.