예제 #1
0
파일: qCorrel.cs 프로젝트: wouldyougo/EMD
        //---------------------------------------------------------------------------
        public void clcMCov()
        {
            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.clcMCovariation(Procent, X, Y);
            tData = tData.clcMCovariation(Procent, new qData(X), new qData(Y));
            List<double> tVctr = new List<double>();
            tVctr = tData.get();
            this.Data.set(tVctr);

            //   qACorr ACorr;
            //   ACorr.set( X, Koeff, Procent);
            //   this->Prognos.set(ACorr.getAcorrSgm());
            //   this->A.set(ACorr.getAcorrSgmM());
            //   ACorr.clear();
        }