Package org.boris.expr.function.excel

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


            assertEquals("ATAN not working", TH.eval(a, d), Math.atan(d));
        }
    }

    public void testATAN2() throws Exception {
        ATAN2 a = new ATAN2();
        assertEquals(TH.eval(a, 1, 1), 0.785398163397448);
        assertEquals(TH.eval(a, -1, -1), -2.35619449019234);
    }
View Full Code Here

TOP

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

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.