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
+37-27Lines changed: 37 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
-
title: stats_distribution
2
+
title: stats_distribution_normal
3
3
---
4
4
5
-
# Statistical Distributions -- Normal Module
5
+
# Statistical Distributions -- Normal Distribution Module
6
6
7
7
[TOC]
8
8
9
-
## `normal_distribution_rvs` - normal distribution random variates
9
+
## `rvs_normal` - normal distribution random variates
10
10
11
11
### Status
12
12
@@ -16,15 +16,19 @@ Experimental
16
16
17
17
A normal continuous random variate distribution, also known as Gaussian, or Gauss or Laplace-Gauss distribution. The location `loc` specifies the mean or expectation. The `scale` specifies the standard deviation.
18
18
19
-
Without augument the function returns a standard normal distributed random variate N(0,1). The function is elemental.
19
+
Without argument the function returns a standard normal distributed random variate N(0,1).
20
20
21
-
With two arguments, the function returns a normal distributed random variate N(loc, scale^2). For complex auguments, the real and imaginary parts are independent of each other. The function is elemental.
21
+
With two arguments, the function returns a normal distributed random variate N(loc, scale^2). For complex arguments, the real and imaginary parts are independent of each other.
22
22
23
-
With three auguments, the function returns a rank one array of normal distributed random variates.
23
+
With three arguments, the function returns a rank one array of normal distributed random variates.
0 commit comments