public static class RadialBasis.HardyMultiquadric extends Object implements RadialBasis.Function
Constructor and Description |
---|
HardyMultiquadric(double delta)
Creates a Hardy multiquadric basis function \(\sqrt{r^2+
\delta^2}\).
|
Modifier and Type | Method and Description |
---|---|
double |
f(double x)
A Hardy multiquadric basis function.
|
double |
g(double x)
The derivative of the Hardy multiquadric basis function used to
calculate the
gradient of the radial basis
approximation. |
public HardyMultiquadric(double delta)
delta
- a double
specifying the value of the
function parameter. Increasing the multiquadric parameter decreases
fitting-error but generally increases computational effort. The
default value is 1.0.public double f(double x)
f
in interface RadialBasis.Function
x
- a double
, the point at which the function
is to be evaluateddouble
, the value of the function at xpublic double g(double x)
gradient
of the radial basis
approximation.g
in interface RadialBasis.Function
x
- a double
, the point at which the function
is to be evaluateddouble
, the value of the function at xCopyright © 2020 Rogue Wave Software. All rights reserved.