The NormalDist type exposes the following members.
Back to Top
Back to Top
Back to Top
Constructors
Name | Description | |
---|---|---|
![]() | NormalDist |
Instantiates a new Normal Distribution, with Mean = 0 and Std Dev = 1.
|
![]() | NormalDist(IEnumerable Double ) |
Instantiates a new Normal Distribution. Fits a Normal Distribution based on an array of data.
|
![]() | NormalDist(Double, Double) |
Instantiates a new Normal Distribution.
|
Methods
Name | Description | |
---|---|---|
![]() | GetNextValue |
Obtains the next random value from the distribution with the given
μ and σ.
|
![]() ![]() | GetZ |
Generates a random value for the N(0,1) distribution.
|
![]() | ToString |
Converts to String.
(Overrides ![]() |
Properties
Name | Description | |
---|---|---|
![]() | Mean |
The Mean of the normally distributed data (μ).
|
![]() | StdDev |
The Standard Deviation of the normally distributed data (σ).
|
![]() | Variance |
The variance of the normally distributed data (σ²).
|
See Also