Пример #1
0
 public static double StdDevB(Statistics y, Statistics x)
 {
     try
     {
         return(StdDevY(y, x) / Math.Sqrt(x.VarianceTotal()));
     }
     catch (Exception)
     {
         return(double.NaN);
     }
 }
Пример #2
0
 public static double StdDevB(Statistics y, Statistics x)
 {
     try
     {
         return StdDevY(y, x) / Math.Sqrt(x.VarianceTotal());
     }
     catch (Exception)
     {
         return double.NaN;
     }
 }
Пример #3
0
 public static double StdDevA(Statistics y, Statistics x)
 {
     try
     {
         return(StdDevY(y, x) * Math.Sqrt(x.SumOfSquares() / (x._list.Length * x.VarianceTotal())));
     }
     catch (Exception)
     {
         return(double.NaN);
     }
 }
Пример #4
0
 public static double StdDevA(Statistics y, Statistics x)
 {
     try
     {
         return StdDevY(y, x) * Math.Sqrt(x.SumOfSquares() / (x._list.Length * x.VarianceTotal()));
     }
     catch (Exception)
     {
         return double.NaN;
     }
 }