Examples of Laplace_interp


Examples of com.nr.interp.Laplace_interp

      p=myran.int32p()%N;
      q=myran.int32p()%M;
      mat[p][q]=1.e99;
    }
    System.out.printf("     Initial discrepancy: %g\n", maxel(matsub(actual,mat)));
    Laplace_interp mylaplace = new Laplace_interp(mat);
    mylaplace.solve();
    System.out.printf("     Final discrepancy: %g\n", maxel(matsub(actual,mat)));
    localflag = maxel(matsub(actual,mat)) > sbeps;
    globalflag = globalflag || localflag;
    if (localflag) {
      fail("*** Laplace_interp: Inaccurate Laplace interpolation of missing matrix data.");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.