Package org.boris.expr.function.excel

Examples of org.boris.expr.function.excel.EXP


        assertEquals(eval(e, 5), 6.);
        assertEquals(eval(e, 6), 6.);
    }

    public void testEXP() throws Exception {
        EXP e = new EXP();
        for (int i = 0; i < 100; i++) {
            double d = Math.random() * 10;
            assertEquals(eval(e, d), Math.exp(d));
        }
    }
View Full Code Here

TOP

Related Classes of org.boris.expr.function.excel.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.