예제 #1
0
파일: CombStat.java 프로젝트: vrodic/Clus
 public void addPrediction(ClusStatistic other, double weight) {
   CombStat or = (CombStat) other;
   m_RegStat.addPrediction(or.m_RegStat, weight);
   m_ClassStat.addPrediction(or.m_ClassStat, weight);
 }