コード例 #1
0
 /**
  * Set a double prediciton in the specified prediction column. The index into the prediction set
  * is used, not the actual column index.
  *
  * @param prediction the value of the prediciton
  * @param row the row of the table
  * @param predictionColIdx the index into the prediction set
  */
 public void setDoublePrediction(double prediction, int row, int predictionColIdx) {
   // setDouble(prediction, row, predictionSet[predictionColIdx]);
   predictionColumnsTable.setDouble(prediction, row, predictionColIdx);
 }