Package functions.basic

Examples of functions.basic.Exp


    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        double x = Functions.integrate(new Exp(), 0, 1, 0.0000001);
        System.out.println(x);
        System.out.println("Non thread");
        nonThread();
        System.out.println("Simple");
        simpleThreads();
View Full Code Here

TOP

Related Classes of functions.basic.Exp

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.