Skip to content

Commit 2e399ea

Browse files
Update stdlib_stats_distribution_normal.md
1 parent 7f2bb28 commit 2e399ea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/specs/stdlib_stats_distribution_normal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ program demo_normal_rvs
5959
! 0.563655198
6060
6161
print *, norm(1.0, 2.0)
62-
!normal random variate \(\mu\)=1.0, \(\sigma\)=2.0
62+
!normal random variate miu=1.0, sigma=2.0
6363
6464
! -0.633261681
6565
@@ -81,7 +81,7 @@ program demo_normal_rvs
8181
loc = (-1.0, 2.0)
8282
scale = (2.0, 1.0)
8383
print *, norm(loc, scale)
84-
!single complex normal random variate with real part of \(\mu\)=-1, \(\sigma\)=2; imagainary part of \(\mu\)=2.0 and \(\sigma\)=1.0
84+
!single complex normal random variate with real part of mu=-1, sigma=2; imagainary part of mu=2.0 and sigma=1.0
8585
8686
! (1.22566295,2.12518454)
8787
@@ -140,7 +140,7 @@ program demo_normal_pdf
140140
! 0.241970733
141141
142142
print *, norm_pdf(2.0,-1.0, 2.0)
143-
!a probability density at 2.0 with \(\mu\)=-1.0 \(\sigma\)=2.0
143+
!a probability density at 2.0 with mu=-1.0 sigma=2.0
144144
145145
!6.47588000E-02
146146
@@ -160,7 +160,7 @@ program demo_normal_pdf
160160
loc = (1.0, -0.5)
161161
scale = (1.0, 2.)
162162
print *, norm_pdf((1.5,1.0), loc, scale)
163-
! a complex normal probability density function at (1.5,1.0) with real part of \(\mu\)=1.0, \(\sigma\)=1.0 and imaginary part of \(\mu\)=-0.5, \(\sigma\)=2.0
163+
! a complex normal probability density function at (1.5,1.0) with real part of mu=1.0, sigma=1.0 and imaginary part of mu=-0.5, sigma=2.0
164164
165165
! 5.30100204E-02
166166
@@ -219,7 +219,7 @@ program demo_norm_cdf
219219
! 0.841344714
220220
221221
print *, norm_cdf(2.0, -1.0, 2.0)
222-
! a cumulative at 2.0 with \(\mu\)=-1 \(\sigma\)=2
222+
! a cumulative at 2.0 with mu=-1 sigma=2
223223
224224
! 0.933192849
225225
@@ -239,7 +239,7 @@ program demo_norm_cdf
239239
loc = (1.0,0.0)
240240
scale = (0.5,1.0)
241241
print *, norm_cdf((0.5,-0.5),loc,scale)
242-
!complex normal cumulative distribution at (0.5,-0.5) with real part of \(\mu\)=1.0, \(\sigma\)=0.5 and imaginary part of \(\mu\)=0.0, \(\sigma\)=1.0
242+
!complex normal cumulative distribution at (0.5,-0.5) with real part of mu=1.0, sigma=0.5 and imaginary part of mu=0.0, sigma=1.0
243243
244244
!4.89511043E-02
245245

0 commit comments

Comments
 (0)