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

org.apache.commons.numbers.gamma.Erf Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/*
 * 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.numbers.gamma;

/**
 * Error function.
 */
public final class Erf {
    /** The threshold value for returning the extreme value. */
    private static final double EXTREME_VALUE_BOUND = 40;

    /** Private constructor. */
    private Erf() {
        // intenitonal empty.
    }

    /**
     * 

* This implementation computes erf(x) using the * {@link RegularizedGamma.P#value(double, double, double, int) regularized gamma function}, * following Erf, equation (3) *

* *

* The returned value is always between -1 and 1 (inclusive). * If {@code abs(x) > 40}, then {@code Erf.value(x)} is indistinguishable from * either 1 or -1 at {@code double} precision, so the appropriate extreme value * is returned. *

* * @param x the value. * @return the error function. * @throws ArithmeticException if the algorithm fails to converge. * * @see RegularizedGamma.P#value(double, double, double, int) */ public static double value(double x) { if (Math.abs(x) > EXTREME_VALUE_BOUND) { return x > 0 ? 1 : -1; } final double ret = RegularizedGamma.P.value(0.5, x * x, 1e-15, 10000); return x < 0 ? -ret : ret; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy