示例#1
0
        public static double Det(double[][] L, double[][] U, int n)
        {
            double detL  = MatrixUtils.DeterminantSqM(L, n);
            double detU  = MatrixUtils.DeterminantSqM(U, n);
            double detLU = detL * detU;

            return(detLU);
        }