Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/Probabilistics/IDistribution.cs =================================================================== diff -u -r5d53c93d9e66f38ca73d333f85855ec815f962c5 -r394db7c1bd905eb7444b9b2c47bcb5111bb63af6 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/Probabilistics/IDistribution.cs (.../IDistribution.cs) (revision 5d53c93d9e66f38ca73d333f85855ec815f962c5) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/Probabilistics/IDistribution.cs (.../IDistribution.cs) (revision 394db7c1bd905eb7444b9b2c47bcb5111bb63af6) @@ -8,12 +8,14 @@ public interface IDistribution { /// - /// Performs the inverse Cumulative Density Function on the distribution, returning - /// the concrete realization corresponding with the given probability. + /// Gets or sets the mean (expected value, E(X)) of the distribution. /// - /// The probability, for which P(X<x) applies where x will be the returned result. - /// The concrete realization value. - /// is not in the range [0.0, 1.0]. - double InverseCDF(double p); + 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; } } } \ No newline at end of file