alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Commons Math example source code file (UnivariateRealSolverUtils.java)

This example Commons Math source code file (UnivariateRealSolverUtils.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Commons Math tags/keywords

convergenceexception, convergenceexception, factory, factory, functionevaluationexception, functionevaluationexception, lazyholder, null_function_message, string, univariaterealsolver, univariaterealsolverfactory, univariaterealsolverutils, univariaterealsolverutils

The Commons Math UnivariateRealSolverUtils.java source code

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.math.analysis.solvers;

import org.apache.commons.math.FunctionEvaluationException;
import org.apache.commons.math.ConvergenceException;
import org.apache.commons.math.MathRuntimeException;
import org.apache.commons.math.analysis.UnivariateRealFunction;

/**
 * Utility routines for {@link UnivariateRealSolver} objects.
 *
 * @version $Revision: 885278 $ $Date: 2009-11-29 16:47:51 -0500 (Sun, 29 Nov 2009) $
 */
public class UnivariateRealSolverUtils {

    /** Message for null function.*/
    private static final String NULL_FUNCTION_MESSAGE =
        "function is null";

    /**
     * Default constructor.
     */
    private UnivariateRealSolverUtils() {
        super();
    }

    /**
     * Convenience method to find a zero of a univariate real function.  A default
     * solver is used.
     *
     * @param f the function.
     * @param x0 the lower bound for the interval.
     * @param x1 the upper bound for the interval.
     * @return a value where the function is zero.
     * @throws ConvergenceException if the iteration count was exceeded
     * @throws FunctionEvaluationException if an error occurs evaluating
     * the function
     * @throws IllegalArgumentException if f is null or the endpoints do not
     * specify a valid interval
     */
    public static double solve(UnivariateRealFunction f, double x0, double x1)
    throws ConvergenceException, FunctionEvaluationException {
        setup(f);
        return LazyHolder.FACTORY.newDefaultSolver().solve(f, x0, x1);
    }

    /**
     * Convenience method to find a zero of a univariate real function.  A default
     * solver is used.
     *
     * @param f the function
     * @param x0 the lower bound for the interval
     * @param x1 the upper bound for the interval
     * @param absoluteAccuracy the accuracy to be used by the solver
     * @return a value where the function is zero
     * @throws ConvergenceException if the iteration count is exceeded
     * @throws FunctionEvaluationException if an error occurs evaluating the
     * function
     * @throws IllegalArgumentException if f is null, the endpoints do not
     * specify a valid interval, or the absoluteAccuracy is not valid for the
     * default solver
     */
    public static double solve(UnivariateRealFunction f, double x0, double x1,
            double absoluteAccuracy) throws ConvergenceException,
            FunctionEvaluationException {

        setup(f);
        UnivariateRealSolver solver = LazyHolder.FACTORY.newDefaultSolver();
        solver.setAbsoluteAccuracy(absoluteAccuracy);
        return solver.solve(f, x0, x1);
    }

    /**
     * This method attempts to find two values a and b satisfying <ul>
    * <li>  lowerBound <= a < initial < b <= upperBound 
     * <li>  f(a) * f(b) < 0 
     * </ul>
     * If f is continuous on <code>[a,b], this means that a
     * and <code>b bracket a root of f.
     * <p>
     * The algorithm starts by setting
     * <code>a := initial -1; b := initial +1, examines the value of the
     * function at <code>a and b and keeps moving
     * the endpoints out by one unit each time through a loop that terminates
     * when one of the following happens: <ul>
     * <li>  f(a) * f(b) < 0  --  success!
     * <li>  a = lower  and  b = upper
     * -- ConvergenceException </li>
     * <li>  Integer.MAX_VALUE iterations elapse
     * -- ConvergenceException </li>
     * </ul>

* <p> * <strong>Note: this method can take * <code>Integer.MAX_VALUE iterations to throw a * <code>ConvergenceException. Unless you are confident that there * is a root between <code>lowerBound and upperBound * near <code>initial, it is better to use * {@link #bracket(UnivariateRealFunction, double, double, double, int)}, * explicitly specifying the maximum number of iterations.</p> * * @param function the function * @param initial initial midpoint of interval being expanded to * bracket a root * @param lowerBound lower bound (a is never lower than this value) * @param upperBound upper bound (b never is greater than this * value) * @return a two element array holding {a, b} * @throws ConvergenceException if a root can not be bracketted * @throws FunctionEvaluationException if an error occurs evaluating the * function * @throws IllegalArgumentException if function is null, maximumIterations * is not positive, or initial is not between lowerBound and upperBound */ public static double[] bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound) throws ConvergenceException, FunctionEvaluationException { return bracket( function, initial, lowerBound, upperBound, Integer.MAX_VALUE ) ; } /** * This method attempts to find two values a and b satisfying <ul> * <li> lowerBound <= a < initial < b <= upperBound * <li> f(a) * f(b) <= 0 * </ul> * If f is continuous on <code>[a,b], this means that a * and <code>b bracket a root of f. * <p> * The algorithm starts by setting * <code>a := initial -1; b := initial +1, examines the value of the * function at <code>a and b and keeps moving * the endpoints out by one unit each time through a loop that terminates * when one of the following happens: <ul> * <li> f(a) * f(b) <= 0 -- success! * <li> a = lower and b = upper * -- ConvergenceException </li> * <li> maximumIterations iterations elapse * -- ConvergenceException </li>

* * @param function the function * @param initial initial midpoint of interval being expanded to * bracket a root * @param lowerBound lower bound (a is never lower than this value) * @param upperBound upper bound (b never is greater than this * value) * @param maximumIterations maximum number of iterations to perform * @return a two element array holding {a, b}. * @throws ConvergenceException if the algorithm fails to find a and b * satisfying the desired conditions * @throws FunctionEvaluationException if an error occurs evaluating the * function * @throws IllegalArgumentException if function is null, maximumIterations * is not positive, or initial is not between lowerBound and upperBound */ public static double[] bracket(UnivariateRealFunction function, double initial, double lowerBound, double upperBound, int maximumIterations) throws ConvergenceException, FunctionEvaluationException { if (function == null) { throw MathRuntimeException.createIllegalArgumentException(NULL_FUNCTION_MESSAGE); } if (maximumIterations <= 0) { throw MathRuntimeException.createIllegalArgumentException( "bad value for maximum iterations number: {0}", maximumIterations); } if (initial < lowerBound || initial > upperBound || lowerBound >= upperBound) { throw MathRuntimeException.createIllegalArgumentException( "invalid bracketing parameters: lower bound={0}, initial={1}, upper bound={2}", lowerBound, initial, upperBound); } double a = initial; double b = initial; double fa; double fb; int numIterations = 0 ; do { a = Math.max(a - 1.0, lowerBound); b = Math.min(b + 1.0, upperBound); fa = function.value(a); fb = function.value(b); numIterations++ ; } while ((fa * fb > 0.0) && (numIterations < maximumIterations) && ((a > lowerBound) || (b < upperBound))); if (fa * fb > 0.0 ) { throw new ConvergenceException( "number of iterations={0}, maximum iterations={1}, " + "initial={2}, lower bound={3}, upper bound={4}, final a value={5}, " + "final b value={6}, f(a)={7}, f(b)={8}", numIterations, maximumIterations, initial, lowerBound, upperBound, a, b, fa, fb); } return new double[]{a, b}; } /** * Compute the midpoint of two values. * * @param a first value. * @param b second value. * @return the midpoint. */ public static double midpoint(double a, double b) { return (a + b) * .5; } /** * Checks to see if f is null, throwing IllegalArgumentException if so. * @param f input function * @throws IllegalArgumentException if f is null */ private static void setup(UnivariateRealFunction f) { if (f == null) { throw MathRuntimeException.createIllegalArgumentException(NULL_FUNCTION_MESSAGE); } } // CHECKSTYLE: stop HideUtilityClassConstructor /** Holder for the factory. * <p>We use here the Initialization On Demand Holder Idiom.

*/ private static class LazyHolder { /** Cached solver factory */ private static final UnivariateRealSolverFactory FACTORY = UnivariateRealSolverFactory.newInstance(); } // CHECKSTYLE: resume HideUtilityClassConstructor }

Other Commons Math examples (source code examples)

Here is a short list of links related to this Commons Math UnivariateRealSolverUtils.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.