//------------------------------------------------------------------------------------------
        //Минор элемента (row, column)
        public double GetMinor(int row, int column)
        {
            RealMatrix augmentMatrix = this.GetAugmentedMatrix(row, column);
            double     minor         = augmentMatrix.GetDeterminant();

            return(minor);
        }