コード例 #1
0
 /* Method: GetTrainOutput
  *  Gets the training output data at the given position
  *
  *  Returns:
  *      An array of output training data at the given position
  *
  *  See also:
  *      <GetTrainInput>
  *
  * This function appears in FANN >= 2.3.0.
  */
 public DataAccessor GetTrainOutput(uint position)
 {
     return(DataAccessor.FromPointer(InternalData.get_train_output(position), (int)OutputCount));
 }