Example #1
0
        //---------------------------------------------------------------------------
        //---------------------------------------------------------------------------
        //---------------------------------------------------------------------------
        //---------------------------------------------------------------------------
        public void clcMCor()
        {
            qData tData = new qData();
            //C++ TO C# CONVERTER WARNING: The following line was determined to be a copy constructor call - this should be verified and a copy constructor should be created if it does not yet exist:
            //ORIGINAL LINE: tData = tData.clcMCorelation(Procent, X, Y);
            tData = tData.clcMCorelation(Procent, new qData(X), new qData(Y));
            List<double> tVctr = new List<double>();
            tVctr = tData.get();
            this.Data.set(tVctr);

            qACorr ACorr = new qACorr();
            ACorr.set(X, Koeff, Procent);
            this.Prognos.set(ACorr.getAcorrSgm());
            this.A.set(ACorr.getAcorrSgmM());
            ACorr.clear();
        }
Example #2
0
 /// <summary>
 /// копирует
 /// </summary>
 /// <param name="aACorr"></param>   
 public void set(qACorr aACorr)
 {
     this.Acorr = aACorr.Acorr;
     this.AcorrSgm = aACorr.AcorrSgm;
     this.AcorrSgmM = aACorr.AcorrSgmM;
     this.KSgm = aACorr.KSgm;
 }
Example #3
0
 public qACorr(qACorr aACorr)
 {
     this.set(aACorr);
 }