Пример #1
0
 public static string Histogram(this IDistribution <double> d, double low, double high) => d.Samples().Histogram(low, high);
Пример #2
0
 public static string Histogram([NotNull] this IDistribution <double> d, double low, double high)
 {
     return(d.Samples().Histogram(low, high));
 }