Package org.boris.expr.function.excel

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


            assertEquals("LN not working", eval(l, d), Math.log(d));
        }
    }

    public void testLOG() throws Exception {
        LOG l = new LOG();
        assertEquals(eval(l, 86, Math.E), 4.45434734288829);
        assertEquals(eval(l, 10, 2), 3.32192809488736);
        assertEquals(eval(l, 10, 1), 1.);
        assertEquals(eval(l, 8, 2), 3.);
    }
View Full Code Here

TOP

Related Classes of org.boris.expr.function.excel.LOG

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.