[Under Construction] Box-Muller法で正規分布に従う乱数を発生させて、その乱数で実際に正規分布をヒストグラムで描画するプログラムを作る。 これは、平均0、分散1の標準正規分布。 プログラムは、「distribution.c」 #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #define NT 10000000 // 発生させる乱数の数 #define BOX 500 // ヒストグラムの解像度 #define UNIT 0.02 // 刻み幅 #define WIDTH 10 // WIDTH := BOX*UNIT