예제 #1
0
파일: qData.cs 프로젝트: wouldyougo/EMD
 //-------------------------------------
 public List<List<double>> clcDiffMatrix(int d)
 {
     List<List<double>> tM = new List<List<double>>(d + 1);
     qData tData = new qData();
     tData = this;
     tM[0] = Vctr;
     for (int i = 1; i <= d; i++)
     {
         tData = tData.clcDifference();
         tM[i] = tData.get();
     } // tData.difference().get();
     return tM;
 }
예제 #2
0
파일: qData.cs 프로젝트: wouldyougo/EMD
 //-------------------------------------
 public qData clcDifference(int d)
 {
     qData tData = new qData();
     tData = this;
     for (int i = 0; i < d; i++)
     {
         tData = tData.clcDifference();
     }
     return tData;
 }