Ejemplo n.º 1
0
 /* Method: SaveTrainToFixed
  *
  * Saves the training structure to a fixed point data file.
  *
  * This function is very useful for testing the quality of a fixed point network.
  *
  * Return:
  * The function returns true on success and false on failure.
  *
  * See also:
  *      <SaveTrain>, <fann_save_train_to_fixed at http://libfann.github.io/fann/docs/files/fann_train-h.html#fann_save_train_to_fixed>
  *
  * This function appears in FANN >= 1.0.0.
  */
 public bool SaveTrainToFixed(string filename, uint decimalPoint)
 {
     return(InternalData.save_train_to_fixed(filename, decimalPoint));
 }