Package com.nr.fe

Examples of com.nr.fe.Poly


   

    // Test Poly
    System.out.println("Testing Poly");
    Poly p = new Poly(cc);
    for (i=0;i<M;i++) {
      x=-5.0+i;
      y[i]=p.get(x);
      yy[i]=pow(x-1.0,5);
    }
    System.out.printf("Poly: Maximum discrepancy = %f\n", maxel(vecsub(y,yy)));
    localflag = maxel(vecsub(y,yy)) > sbeps;
    globalflag = globalflag || localflag;
View Full Code Here

TOP

Related Classes of com.nr.fe.Poly

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.