私の仕事は、正規確率分布を使用して都市住民を生成することです。
都市の数、3000、人口 15 000 000
(JAVA)
int people = 15000000;
int[] arrayofcity = new int[3000]
for (int i = 0; i < arrayofcity.length; i++) {
//how to generate people to the towns of total
//nextGaussian()??
}
ご協力ありがとうございました