Package fork.lib.math.algebra.elementary.function

Examples of fork.lib.math.algebra.elementary.function.FunctionException


     * Construct a polynomial function of degree n from given constants.
     * @param ds   coefficients in the order of highest degree to lowest
     */
    public DegreeNFunction(double...ds) throws FunctionException{
        if(ds==null || ds.length==0){
            throw new FunctionException();
        }else{
            this.coeffs=ds;
        }
    }
View Full Code Here

TOP

Related Classes of fork.lib.math.algebra.elementary.function.FunctionException

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.