Encog.Neural.Networks.Synapse.WeightedSynapse.Clone C# (CSharp) Method

Clone() public method

Clone this object.
public Clone ( ) : object
return object
        public override object Clone()
        {
            WeightedSynapse result = new WeightedSynapse();
            result.WeightMatrix = (Matrix)this.WeightMatrix.Clone();
            return result;
        }