public interface MultivariateRealInterpolator
Modifier and Type | Method and Description |
---|---|
MultivariateRealFunction |
interpolate(double[][] xval,
double[] yval)
Computes an interpolating function for the data set.
|
MultivariateRealFunction interpolate(double[][] xval, double[] yval) throws MathException, java.lang.IllegalArgumentException
xval
- the arguments for the interpolation points.
xval[i][0]
is the first component of interpolation point
i
, xval[i][1]
is the second component, and so on
until xval[i][d-1]
, the last component of that interpolation
point (where d
is thus the dimension of the space).yval
- the values for the interpolation pointsMathException
- if arguments violate assumptions made by the
interpolation algorithm or some dimension mismatch occursjava.lang.IllegalArgumentException
- if there are no data (xval null or zero length)"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"