org.encog.mathutil.rbf
public interface RadialBasisFunction extends Serializable
| Modifier and Type | Method and Description |
|---|---|
double |
calculate(double[] x)
Calculate the RBF result for the specified value.
|
double |
getCenter(int dimension)
Get the center of this RBD.
|
double[] |
getCenters() |
int |
getDimensions() |
double |
getPeak()
Get the center of this RBD.
|
double |
getWidth() |
void |
setCenters(double[] center)
Set the centers.
|
void |
setPeak(double peak)
Set the peak.
|
void |
setWidth(double radius)
Set the width.
|
double calculate(double[] x)
x - The value to be passed into the RBF.double getCenter(int dimension)
dimension - The dimension to get the center for.double getPeak()
void setPeak(double peak)
peak - The peak.double getWidth()
int getDimensions()
void setWidth(double radius)
radius - The width.double[] getCenters()
void setCenters(double[] center)
center - The centers.Copyright © 2014. All Rights Reserved.