Uses of Interface
smile.math.Function
-
Packages that use Function Package Description smile.math smile.math.rbf -
-
Uses of Function in smile.math
Subinterfaces of Function in smile.math Modifier and Type Interface Description interfaceDifferentiableFunctionA differentiable function is a function whose derivative exists at each point in its domain.Methods in smile.math with parameters of type Function Modifier and Type Method Description static doubleMath. 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 doubleMath. 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. -
Uses of Function in smile.math.rbf
Subinterfaces of Function in smile.math.rbf Modifier and Type Interface Description interfaceRadialBasisFunctionA 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||).Classes in smile.math.rbf that implement Function Modifier and Type Class Description classGaussianRadialBasisGaussian RBF.
-