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)
TrivariateRealFunction
value
in interface TrivariateRealFunction
x
- x-coordinate of the interpolation point.y
- y-coordinate of the interpolation point.z
- z-coordinate of the interpolation point.Copyright (c) 2003-2014 Apache Software Foundation