Normal class

Constructors

Normal([num mean = 0.0, num variance = 1.0])

Properties

hashCode int
The hash code for this object.
no setterinherited
mean num
The mean of the normal distribution.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
standardDeviation num
The standard deviation of the normal distribution.
final
variance num
The variance of the normal distribution.
final

Methods

cdf(num x) num
Gives the normal cumulative distribution function.
generate(int n, {int? seed}) List<num>
Generates random data drawn from a normal distribution.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pdf(num x) num
Gives the normal probability density at x.
quantile(num p) num
Gives the quantile associated with an input probability.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited