You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/specs/stdlib_stats_distribution_normal.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ program demo_normal_rvs
59
59
! 0.563655198
60
60
61
61
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
63
63
64
64
! -0.633261681
65
65
@@ -81,7 +81,7 @@ program demo_normal_rvs
81
81
loc = (-1.0, 2.0)
82
82
scale = (2.0, 1.0)
83
83
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
85
85
86
86
! (1.22566295,2.12518454)
87
87
@@ -140,7 +140,7 @@ program demo_normal_pdf
140
140
! 0.241970733
141
141
142
142
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
144
144
145
145
!6.47588000E-02
146
146
@@ -160,7 +160,7 @@ program demo_normal_pdf
160
160
loc = (1.0, -0.5)
161
161
scale = (1.0, 2.)
162
162
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
164
164
165
165
! 5.30100204E-02
166
166
@@ -219,7 +219,7 @@ program demo_norm_cdf
219
219
! 0.841344714
220
220
221
221
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
223
223
224
224
! 0.933192849
225
225
@@ -239,7 +239,7 @@ program demo_norm_cdf
239
239
loc = (1.0,0.0)
240
240
scale = (0.5,1.0)
241
241
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
0 commit comments