public class LaplaceInterpolation
extends java.lang.Object
| Constructor and Description |
|---|
LaplaceInterpolation() |
| Modifier and Type | Method and Description |
|---|---|
static double |
interpolate(double[][] matrix)
Laplace interpolation.
|
static double |
interpolate(double[][] matrix,
double tol)
Laplace interpolation.
|
static double |
interpolate(double[][] matrix,
double tol,
int maxIter)
Laplace interpolation.
|
java.lang.String |
toString() |
public static double interpolate(double[][] matrix)
matrix - on input, values of NaN are deemed to be missing data.
On output, they are refilled with the interpolated solution.public static double interpolate(double[][] matrix,
double tol)
matrix - on input, values of NaN are deemed to be missing data.
On output, they are refilled with the interpolated solution.tol - the desired convergence tolerance.public static double interpolate(double[][] matrix,
double tol,
int maxIter)
matrix - on input, values of NaN are deemed to be missing data.
On output, they are refilled with the interpolated solution.tol - the desired convergence tolerance.maxIter - the maximum number of allowed iterations.public java.lang.String toString()
toString in class java.lang.Object