AForge.Neuro.Layer.Randomize C# (CSharp) Method

Randomize() public method

Randomize neurons of the layer.
Randomizes layer's neurons by calling Neuron.Randomize method of each neuron.
public Randomize ( ) : void
return void
        public virtual void Randomize( )
        {
            foreach ( Neuron neuron in neurons )
                neuron.Randomize( );
        }
    }