PutArray() public method

Convert an array of doubles to the current best network.
public PutArray ( double array ) : void
array double An array.
return void
Esempio n. 1
0
 /// <summary>
 /// Used to pass the putArray call on to the parent object.
 /// </summary>
 ///
 /// <param name="array">The array.</param>
 public override sealed void PutArray(double[] array)
 {
     _owner.PutArray(array);
 }
 /// <summary>
 /// Used to pass the putArray call on to the parent object.
 /// </summary>
 /// <param name="array">The array.</param>
 public override void PutArray(double[] array)
 {
     owner.PutArray(array);
 }