org.encog.mathutil.rbf
public class MultiquadricFunction extends BasicRBF
Constructor and Description |
---|
MultiquadricFunction(double peak,
double[] center,
double width)
Construct a multi-dimension Multiquadric function with the specified
peak, centers and widths.
|
MultiquadricFunction(double center,
double peak,
double width)
Construct a single-dimension Multiquadric function with the specified
peak, centers and widths.
|
MultiquadricFunction(int dimensions)
Create centered at zero, width 0, and peak 0.
|
Modifier and Type | Method and Description |
---|---|
double |
calculate(double[] x)
Calculate the RBF result for the specified value.
|
getCenter, getCenters, getDimensions, getPeak, getWidth, setCenters, setPeak, setWidth, toString
public MultiquadricFunction(double center, double peak, double width)
peak
- The peak for all dimensions.center
- The centers for each dimension.width
- The widths for each dimension.public MultiquadricFunction(double peak, double[] center, double width)
peak
- The peak for all dimensions.center
- The centers for each dimension.width
- The widths for each dimension.public MultiquadricFunction(int dimensions)
dimensions
- The dimensions.Copyright © 2014. All Rights Reserved.