Package org.apache.commons.math

Examples of org.apache.commons.math.MathRuntimeException


     * @return  The pdf at point x.
     * @throws MathRuntimeException if the specialized class hasn't implemented this function
     * @since 2.1
     */
    public double density(double x) throws MathRuntimeException {
        throw new MathRuntimeException(new UnsupportedOperationException(),
                "This distribution does not have a density function implemented");
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.math.MathRuntimeException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.