원 내부의 점들은 극좌표
그럼 반지름
먼저, 원내부에 균일한 점분포가 있을 때 반지름과 각도의 분포가 어떻게 주어질지 알아보자. 이 경우 반지름
이므로 확률밀도함수(pdf)는
로 주어진다. 즉, 원내부에서 균일한 점분포는 각

따라서 반대로 균일한 반지름/각 분포를 이용해서 원내부에서 균일한 점분포를 만들려면
의 변환을 사용해야 Jaconbian이 상수가 됨을 알 수 있다.

void UniformDist_disk(CDC *pDC) {
srand(unsigned(time(0)));
double scale = 100;
for (int i = 0; i < 1000; i++) {
double r = double(rand()) / RAND_MAX;
double ang = 2 * PI * double(rand()) / RAND_MAX;
double x = scale * sqrt(r) * cos(ang);
double y = scale * sqrt(r) * sin(ang);
int xi = int(x + scale + 0.5);
int yi = int(y + scale + 0.5);
pDC->Ellipse(xi - 1, yi - 1, xi + 1, yi + 1);
}
}
728x90
'Mathematics' 카테고리의 다른 글
Catenary: constant stress (0) | 2022.01.29 |
---|---|
Catenary: Variational Approach (0) | 2022.01.29 |
Mean distance between two randomly chosen points in unit square (0) | 2022.01.28 |
Catenary (0) | 2022.01.14 |
Integration along a branch cut-014 (0) | 2022.01.03 |