@@ -64,7 +64,7 @@ program demo_normal_rvs
6464! 0.563655198
6565
6666 print *, norm(1.0, 2.0)
67- !normal random variate miu =1.0, sigma=2.0
67+ !normal random variate mu =1.0, sigma=2.0
6868
6969! -0.633261681
7070
@@ -86,8 +86,8 @@ program demo_normal_rvs
8686 loc = (-1.0, 2.0)
8787 scale = (2.0, 1.0)
8888 print *, norm(loc, scale)
89- !single complex normal random variate with real part of miu =-1, sigma=2;
90- !imagainary part of miu =2.0 and sigma=1.0
89+ !single complex normal random variate with real part of mu =-1, sigma=2;
90+ !imagainary part of mu =2.0 and sigma=1.0
9191
9292! (1.22566295,2.12518454)
9393
@@ -149,7 +149,7 @@ program demo_normal_pdf
149149! 0.241970733
150150
151151 print *, norm_pdf(2.0,-1.0, 2.0)
152- !a probability density at 2.0 with miu =-1.0 sigma=2.0
152+ !a probability density at 2.0 with mu =-1.0 sigma=2.0
153153
154154!6.47588000E-02
155155
@@ -170,7 +170,7 @@ program demo_normal_pdf
170170 scale = (1.0, 2.)
171171 print *, norm_pdf((1.5,1.0), loc, scale)
172172 ! a complex normal probability density function at (1.5,1.0) with real part
173- ! of miu =1.0, sigma=1.0 and imaginary part of miu =-0.5, sigma=2.0
173+ ! of mu =1.0, sigma=1.0 and imaginary part of mu =-0.5, sigma=2.0
174174
175175! 5.30100204E-02
176176
@@ -232,7 +232,7 @@ program demo_norm_cdf
232232! 0.841344714
233233
234234 print *, norm_cdf(2.0, -1.0, 2.0)
235- ! a cumulative at 2.0 with miu =-1 sigma=2
235+ ! a cumulative at 2.0 with mu =-1 sigma=2
236236
237237! 0.933192849
238238
@@ -253,7 +253,7 @@ program demo_norm_cdf
253253 scale = (0.5,1.0)
254254 print *, norm_cdf((0.5,-0.5),loc,scale)
255255 !complex normal cumulative distribution at (0.5,-0.5) with real part of
256- !miu =1.0, sigma=0.5 and imaginary part of miu =0.0, sigma=1.0
256+ !mu =1.0, sigma=0.5 and imaginary part of mu =0.0, sigma=1.0
257257
258258!4.89511043E-02
259259
0 commit comments