All Downloads are FREE. Search and download functionalities are using the official Maven repository.

optim.NumericalDerivatives Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016 Jacob Rachiele
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
 * and associated documentation files (the "Software"), to deal in the Software without restriction
 * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense
 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to
 * do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or
 * substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 * Contributors:
 *
 * Jacob Rachiele
 */
package optim;

import linear.doubles.Vector;
import math.function.Function;
import math.function.MultivariateDoubleFunction;
import math.function.MultivariateFunction;

/**
 * Static methods for computing numerical derivatives.
 *
 * @author Jacob Rachiele
 */
public final class NumericalDerivatives {

    private NumericalDerivatives() {
    }

    public static double forwardDifferenceApproximation(final Function f, final double point, final double h) {
        return (f.at(point) - f.at(point - h)) / h;
    }

    public static double centralDifferenceApproximation(final Function f, final double point, final double h) {
        return (f.at(point + 0.5 * h) - f.at(point - 0.5 * h)) / h;
    }

    public static double forwardDifferenceApproximation(final Function f, final double point, final double h,
                                                        final double functionValue) {
        return (functionValue - f.at(point - h)) / h;
    }

    public static double[] forwardDifferenceGradient(final MultivariateDoubleFunction f, final double[] point,
                                                     final double h) {
        double[] newPoints = point.clone();
        final double[] partials = new double[point.length];
        final double functionValue = f.at(point);
        for (int i = 0; i < partials.length; i++) {
            newPoints[i] = point[i] + h;
            partials[i] = (f.at(newPoints) - functionValue) / h;
            newPoints = point.clone();
        }
        return partials;
    }

    public static double[] centralDifferenceGradient(final MultivariateDoubleFunction f, final double[] point,
                                                     final double h) {
        double[] forwardPoints = point.clone();
        double[] backwardPoints = point.clone();
        final double[] partials = new double[point.length];
        for (int i = 0; i < partials.length; i++) {
            forwardPoints[i] = point[i] + 0.5 * h;
            backwardPoints[i] = point[i] - 0.5 * h;
            partials[i] = (f.at(forwardPoints) - f.at(backwardPoints)) / h;
            forwardPoints = point.clone();
            backwardPoints = point.clone();
        }
        return partials;
    }

    public static Vector forwardDifferenceGradient(final MultivariateFunction f, final Vector point, final double h) {
        double[] newPoints = point.elements().clone();
        final double[] partials = new double[point.size()];
        final double functionValue = f.at(point);
        for (int i = 0; i < partials.length; i++) {
            newPoints[i] = point.at(i) + h;
            partials[i] = (f.at(Vector.from(newPoints)) - functionValue) / h;
            newPoints = point.elements().clone();
        }
        return Vector.from(partials);
    }

    public static Vector forwardDifferenceGradient(final MultivariateFunction f, final Vector point, final double h,
                                                   final double functionValue) {
        double[] newPoints = point.elements().clone();
        final double[] partials = new double[point.size()];
        for (int i = 0; i < partials.length; i++) {
            newPoints[i] = point.at(i) + h;
            partials[i] = (f.at(Vector.from(newPoints)) - functionValue) / h;
            newPoints = point.elements().clone();
        }
        return Vector.from(partials);
    }

    public static Vector centralDifferenceGradient(final MultivariateFunction f, final Vector point, final double h) {
        double[] forwardPoints = point.elements().clone();
        double[] backwardPoints = point.elements().clone();
        final double[] partials = new double[point.size()];
        for (int i = 0; i < partials.length; i++) {
            forwardPoints[i] = point.at(i) + h;
            backwardPoints[i] = point.at(i) - h;
            partials[i] = (f.at(Vector.from(forwardPoints)) - f.at(Vector.from(backwardPoints))) / (2 * h);
            forwardPoints = point.elements().clone();
            backwardPoints = point.elements().clone();
        }
        return Vector.from(partials);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy