using System; namespace Ringtoets.Piping.Data.Probabilistics { /// /// This object represents a probabilistic distribution. /// public interface IDistribution { /// /// Gets or sets the mean (expected value, E(X)) of the distribution. /// double Mean { get; set; } /// /// Gets or sets the standard deviation (square root of the Var(X)) of the distribution. /// /// Standard deviation is less then or equal to 0. double StandardDeviation { get; set; } } }