Boolean StdDev { get; set; }
If True, standard deviation of the signal will be included in the report.
Returns: Boolean
Examples
Matrix a = new Matrix();
a.SetIt(2, 2, false, new double[] { 1.0, 2.0, 3.0, 4.0 });
double result = a.StdDev();
if (Math.Abs(result - 1.29099444873581) > 1e-10)
throw new Exception("Matrix.StdDev: expected 1.29099444873581, got " + result);
Matrix a;
double c;
double aMean;
a.SetIt(2,2,false,new double[] {1,2,3,4});
aMean = a.Mean;
c = a.StdDev(aMean); //if both Mean and StdDev are required this is faster
// c := a.StdDev; //this is an alternative.