Module Distributions.Normal

module Normal: sig .. end
The normal distribution.

type t = {
   normal_mean :float;
   normal_sd :float;
}
include Distributions.ContinuousDistribution
include Distributions.Features.S
val create : mean:float -> sd:float -> t
Creates normal distribution from parameters.
val standard : t
Standard normal distribution with 0 mean and sd equal to 1.
val mle : float array -> t
Creates normal distribution with a MLE of parameters, estimated from given data.