Не забудь using System.Linq;
//писалось на .Net Framework 4.6 vs2017
public static double AverageValue(double[] a)
{
if (a.Length == 0) throw new Exception("не верные параметры");
return a.Sum(x => x) / a.Length;
}
public static double StandardDeviation(double[] a)
{
if (a.Length == 0) throw new Exception("не верные параметры");
var M = AverageValue(a);
var t = a.Sum(x => Math.Pow(x - M, 2));
if (a.Length - 1 <= 0) throw new Exception("не верные параметры, будет деление на ноль");<br>
return 1d / (a.Length - 1) * t;
}