Ejemplo n.º 1
0
        public static double OfFunctionAndDerivative(Func <double, double> f, Func <double, double> df, double lowerBound, double upperBound, double accuracy = 1e-8)
        {
            double root;

            if (HybridNewtonRaphson.TryFindRoot(f, df, lowerBound, upperBound, accuracy, 100, 20, out root))
            {
                return(root);
            }
            if (Brent.TryFindRoot(f, lowerBound, upperBound, accuracy, 100, out root))
            {
                return(root);
            }

            throw new NonConvergenceException("The algorithm has exceeded the number of iterations allowed");
        }
Ejemplo n.º 2
0
 public static double OfFunction(Func <double, double> f, double lowerBound, double upperBound, double accuracy = 1e-8)
 {
     return(Brent.FindRoot(f, lowerBound, upperBound, accuracy, 100));
 }