Exemplo n.º 1
0
        /// <summary>
        ///   Creates a new object that is a copy of the current instance.
        /// </summary>
        /// <returns>
        ///   A new object that is a copy of this instance.
        /// </returns>
        public object Clone()
        {
            var clone = new JaggedQrDecompositionD();

            clone.qr    = (Decimal[][])qr.MemberwiseClone();
            clone.Rdiag = (Decimal[])Rdiag.Clone();
            clone.m     = m;
            clone.n     = n;
            return(clone);
        }
Exemplo n.º 2
0
        /// <summary>
        ///   Creates a new object that is a copy of the current instance.
        /// </summary>
        /// <returns>
        ///   A new object that is a copy of this instance.
        /// </returns>
        public object Clone()
        {
            var clone = new JaggedQrDecompositionD();

            clone.qr      = qr.Copy();
            clone.Rdiag   = Rdiag.Copy();
            clone.n       = n;
            clone.p       = p;
            clone.m       = m;
            clone.economy = economy;
            return(clone);
        }