Namespaces
Variants

std::student_t_distribution<RealType>:: student_t_distribution

From cppreference.net
student_t_distribution ( ) : student_t_distribution ( 1 ) { }
(1) (C++11부터)
explicit student_t_distribution ( RealType n ) ;
(2) (C++11부터)
explicit student_t_distribution ( const param_type & params ) ;
(3) (C++11부터)

새로운 분포 객체를 생성합니다.

2) 분포 매개변수로 n 을 사용합니다.
3) params 를 분포 매개변수로 사용합니다.

매개변수

n - n 분포 매개변수 (자유도)
params - 분포 매개변수 집합

결함 보고서

다음의 동작 변경 결함 보고서들은 이전에 발표된 C++ 표준에 소급 적용되었습니다.

DR 적용 대상 게시된 동작 올바른 동작
P0935R0 C++11 default constructor was explicit made implicit