Package net.sf.doodleproject.numerics4j.series

Examples of net.sf.doodleproject.numerics4j.series.Series.evaluate()


                protected double getTerm(int n, double x) {
                    term = x / (a + n) * term;
                    return term;
                }
            };
            ret = s.evaluate(x)
                * Math.exp(-x + (a * Math.log(x)) - logGamma(a));
        }

        return ret;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.