std::student_t_distribution::student_t_distribution
Aus 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. |
explicit student_t_distribution( RealType n = 1 ); |
(1) | (seit C++11) |
explicit student_t_distribution( const param_type& params ); |
(2) | (seit C++11) |
Erzeugt neue Verteilung Objekt. Die erste Version verwendet
n
als Verteilung Parameter verwendet der zweiten Version params
als Verteilungsparameter .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.
[Bearbeiten] Parameter
n | - | die n Verteilung Parameter (Freiheitsgrade)
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 | - | die Verteilung Parameter eingestellt
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. |