Boolean RMS { get; set; }
If true, RMS of the signal will be inlcuded 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.RMS();
if (Math.Abs(result - 2.73861278752583) > 1e-10)
throw new Exception("Matrix.RMS: expected 2.73861278752583, got " + result);
Matrix a;
double c;
a.SetIt(1,4,false,new double[] {1,2,3,4});
c = a.RMS;