//------------------------------------- private qData clcACorrSgm(double k, qData aData) { List<double> tVctr = new List<double>(); //результат tVctr = aData.clcACorrVar().get(); for (int i = 0; i < tVctr.Count; i++) { tVctr[i] = Math.Sqrt(k * tVctr[i]); } qData tData = new qData(tVctr); return tData; }