public MatrixR GetTranspose()
        {
            MatrixR m = this;

            m.Transpose();
            return(m);
        }