Package org.boris.expr.function.excel

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


        assertEquals(TH.eval(a, 2.5), 1.647231146371);
        assertEquals(TH.eval(a, 10), 2.99822295029);
    }

    public void testATAN() throws Exception {
        ATAN a = new ATAN();
        TH.testDoubleInOutFunction(a);
        for (int i = 0; i < 100; i++) {
            double d = Math.random() * Math.PI;
            assertEquals("ATAN not working", TH.eval(a, d), Math.atan(d));
        }
View Full Code Here

TOP

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

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.