class TricubicSplineFunction extends java.lang.Object implements TrivariateRealFunction
| Modifier and Type | Field and Description |
|---|---|
private double[][][] |
a
Coefficients
|
private static short |
N
Number of points.
|
| Constructor and Description |
|---|
TricubicSplineFunction(double[] aV) |
| Modifier and Type | Method and Description |
|---|---|
double |
value(double x,
double y,
double z)
Compute the value for the function.
|
private static final short N
private final double[][][] a
public TricubicSplineFunction(double[] aV)
aV - List of spline coefficients.public double value(double x,
double y,
double z)
TrivariateRealFunctionvalue in interface TrivariateRealFunctionx - x-coordinate of the interpolation point.y - y-coordinate of the interpolation point.z - z-coordinate of the interpolation point.Copyright (c) 2003-2013 Apache Software Foundation