@@ -64,7 +64,7 @@ program demo_normal_rvs
64
64
! 0.563655198
65
65
66
66
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
68
68
69
69
! -0.633261681
70
70
@@ -86,8 +86,8 @@ program demo_normal_rvs
86
86
loc = (-1.0, 2.0)
87
87
scale = (2.0, 1.0)
88
88
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
91
91
92
92
! (1.22566295,2.12518454)
93
93
@@ -149,7 +149,7 @@ program demo_normal_pdf
149
149
! 0.241970733
150
150
151
151
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
153
153
154
154
!6.47588000E-02
155
155
@@ -170,7 +170,7 @@ program demo_normal_pdf
170
170
scale = (1.0, 2.)
171
171
print *, norm_pdf((1.5,1.0), loc, scale)
172
172
! 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
174
174
175
175
! 5.30100204E-02
176
176
@@ -232,7 +232,7 @@ program demo_norm_cdf
232
232
! 0.841344714
233
233
234
234
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
236
236
237
237
! 0.933192849
238
238
@@ -253,7 +253,7 @@ program demo_norm_cdf
253
253
scale = (0.5,1.0)
254
254
print *, norm_cdf((0.5,-0.5),loc,scale)
255
255
!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
257
257
258
258
!4.89511043E-02
259
259
0 commit comments