Accord.Math.Decompositions.EigenvalueDecomposition.Clone C# (CSharp) Method

Clone() public method

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
return object
        public object Clone()
        {
            var clone = new EigenvalueDecomposition();
            clone.d = (Double[])d.Clone();
            clone.e = (Double[])e.Clone();
            clone.H = (Double[,])H.Clone();
            clone.n = n;
            clone.ort = (Double[])ort;
            clone.symmetric = symmetric;
            clone.V = (Double[,])V.Clone();
            return clone;
        }