std::student_t_distribution::student_t_distribution
Da cppreference.com.
< cpp | numeric | random | student t 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. |
explicit student_t_distribution( RealType n = 1 ); |
(1) | (dal C++11) |
explicit student_t_distribution( const param_type& params ); |
(2) | (dal C++11) |
Costruisce nuovo oggetto di distribuzione. La prima versione utilizza
n
come parametro di distribuzione, la seconda versione utilizza params
come parametro distribuzione.Original:
Constructs new distribution object. The first version uses
n
as the distribution parameter, the second version uses params
as the distribution parameter.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
n | - | la n parametro di distribuzione (gradi di libertà)
Original: the n distribution parameter (degrees of freedom) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
params | - | il parametro di distribuzione predisposto
Original: the distribution parameter set The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |