コード例 #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);
 }