Package com.nr.interp

Examples of com.nr.interp.Poly2D_interp


   

    // Test Poly2D_interp
    System.out.println("Testing Poly2D_interp");
    Poly2D_interp z = new Poly2D_interp(x1,x2,y,3,3);
    localflag = abs(z.interp(2.5,2.5)-5.0) > sbeps;
    globalflag = globalflag || localflag;
    if (localflag) {
      fail("*** Poly2D_interp: Inaccurate 2D polynomial interpolation.");
     
    }
View Full Code Here

TOP

Related Classes of com.nr.interp.Poly2D_interp

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.