Package com.imsl.math
Interface RadialBasis.Function
- All Known Implementing Classes:
RadialBasis.Gaussian,RadialBasis.HardyMultiquadric,RadialBasisEx2.PolyHarmonicSpline
- Enclosing class:
- RadialBasis
public static interface RadialBasis.Function
Public interface for the user supplied function to the
RadialBasis
object.- See Also:
-
Method Summary
-
Method Details
-
f
double f(double x) A radial basis function.- Parameters:
x- adouble, the point at which the function is to be evaluated- Returns:
- a
double, the value of the function at x
-
g
double g(double x) The derivative of the radial basis function used to calculate thegradientof the radial basis approximation.- Parameters:
x- adouble, the point at which the function is to be evaluated- Returns:
- a
double, the value of the function at x
-