| Package | Description |
|---|---|
| smile.math |
Basic mathematical functions, complex, differentiable function interfaces,
random number generators, unconstrained optimization, and raw data type
(int and double) array lists, etc.
|
| smile.math.rbf |
Radial basis functions.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DifferentiableFunction
A differentiable function is a function whose derivative exists at each point
in its domain.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
Math.root(Function func,
double x1,
double x2,
double tol)
Returns the root of a function known to lie between x1 and x2 by
Brent's method.
|
static double |
Math.root(Function func,
double x1,
double x2,
double tol,
int maxIter)
Returns the root of a function known to lie between x1 and x2 by
Brent's method.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
RadialBasisFunction
A radial basis function (RBF) is a real-valued function whose value depends
only on the distance from the origin, so that φ(x)=φ(||x||); or
alternatively on the distance from some other point c, called a center, so
that φ(x,c)=φ(||x-c||).
|
| Modifier and Type | Class and Description |
|---|---|
class |
GaussianRadialBasis
Gaussian RBF.
|
class |
InverseMultiquadricRadialBasis
Inverse multiquadric RBF.
|
class |
MultiquadricRadialBasis
Multiquadric RBF.
|
class |
ThinPlateRadialBasis
Thin plate RBF.
|
Copyright © 2015. All rights reserved.