std::cauchy_distribution<RealType>:: a, b
From cppreference.net
<
cpp
|
numeric
|
random
|
cauchy distribution
C++
Numerics library
| 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 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Pseudo-random number generation
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::cauchy_distribution
| Member functions | ||||
| Generation | ||||
| Characteristics | ||||
|
cauchy_distribution::a
cauchy_distribution::b
|
||||
| Non-member functions | ||||
|
(C++11)
(C++11)
(until C++20)
|
||||
|
(C++11)
(C++11)
|
|
RealType a
(
)
const
;
|
(1) | (C++11부터) |
|
RealType b
(
)
const
;
|
(2) | (C++11부터) |
분포가 생성될 때 사용된 분포 매개변수를 반환합니다.
1)
a
매개변수를 반환합니다. 이는 피크의 위치를 지정하며 위치 매개변수(location parameter)라고도 불립니다. 기본값은
0.0
입니다.
2)
b
매개변수를 반환합니다. 이는 반값에서의 반폭(HWHM)을 나타내며 스케일 매개변수라고도 불립니다. 기본값은
1.0
입니다.
목차 |
매개변수
(없음)
반환값
1)
a
매개변수의 값.
2)
b
매개변수의 값.
참고 항목
|
(C++11)
|
분포 매개변수 객체를 가져오거나 설정함
(public member function) |
외부 링크
| 1. | Scale parameter . 위키백과에서. |
| 2. | Location parameter . 위키백과에서. |