Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Radial basis function
Type of mathematical function

A radial basis function (RBF) is a real-valued function whose output depends only on the distance from a fixed point, often the origin or a chosen center. This distance is typically measured using the Euclidean distance, though other metrics may be used. Collections of RBFs form a basis for certain function spaces. Sums of RBFs are commonly utilized to approximate functions and resemble simple neural networks, a concept stemming from pioneering machine learning research by David Broomhead and David Lowe. Additionally, RBFs serve as a kernel in support vector machines, with broad applications across engineering fields.

We don't have any images related to Radial basis function yet.
We don't have any YouTube videos related to Radial basis function yet.
We don't have any PDF documents related to Radial basis function yet.
We don't have any Books related to Radial basis function yet.
We don't have any archived web articles related to Radial basis function yet.

Definition

A radial function is a function φ : [ 0 , ∞ ) → R {\textstyle \varphi :[0,\infty )\to \mathbb {R} } . When paired with a norm ‖ ⋅ ‖ : V → [ 0 , ∞ ) {\textstyle \|\cdot \|:V\to [0,\infty )} on a vector space, a function of the form φ c = φ ( ‖ x − c ‖ ) {\textstyle \varphi _{\mathbf {c} }=\varphi (\|\mathbf {x} -\mathbf {c} \|)} is said to be a radial kernel centered at c ∈ V {\textstyle \mathbf {c} \in V} . A radial function and the associated radial kernels are said to be radial basis functions if, for any finite set of nodes { x k } k = 1 n ⊆ V {\displaystyle \{\mathbf {x} _{k}\}_{k=1}^{n}\subseteq V} , all of the following conditions are true:

  • The kernels φ x 1 , φ x 2 , … , φ x n {\displaystyle \varphi _{\mathbf {x} _{1}},\varphi _{\mathbf {x} _{2}},\dots ,\varphi _{\mathbf {x} _{n}}} are linearly independent (for example φ ( r ) = r 2 {\displaystyle \varphi (r)=r^{2}} in V = R {\displaystyle V=\mathbb {R} } is not a radial basis function)
  • The kernels φ x 1 , φ x 2 , … , φ x n {\displaystyle \varphi _{\mathbf {x} _{1}},\varphi _{\mathbf {x} _{2}},\dots ,\varphi _{\mathbf {x} _{n}}} form a basis for a Haar Space, meaning that the interpolation matrix (given below) is non-singular.910
[ φ ( ‖ x 1 − x 1 ‖ ) φ ( ‖ x 2 − x 1 ‖ ) … φ ( ‖ x n − x 1 ‖ ) φ ( ‖ x 1 − x 2 ‖ ) φ ( ‖ x 2 − x 2 ‖ ) … φ ( ‖ x n − x 2 ‖ ) ⋮ ⋮ ⋱ ⋮ φ ( ‖ x 1 − x n ‖ ) φ ( ‖ x 2 − x n ‖ ) … φ ( ‖ x n − x n ‖ ) ] {\displaystyle {\begin{bmatrix}\varphi (\|\mathbf {x} _{1}-\mathbf {x} _{1}\|)&\varphi (\|\mathbf {x} _{2}-\mathbf {x} _{1}\|)&\dots &\varphi (\|\mathbf {x} _{n}-\mathbf {x} _{1}\|)\\\varphi (\|\mathbf {x} _{1}-\mathbf {x} _{2}\|)&\varphi (\|\mathbf {x} _{2}-\mathbf {x} _{2}\|)&\dots &\varphi (\|\mathbf {x} _{n}-\mathbf {x} _{2}\|)\\\vdots &\vdots &\ddots &\vdots \\\varphi (\|\mathbf {x} _{1}-\mathbf {x} _{n}\|)&\varphi (\|\mathbf {x} _{2}-\mathbf {x} _{n}\|)&\dots &\varphi (\|\mathbf {x} _{n}-\mathbf {x} _{n}\|)\\\end{bmatrix}}} 1

Examples

Commonly used types of radial basis functions include (writing r = ‖ x − x i ‖ {\textstyle r=\left\|\mathbf {x} -\mathbf {x} _{i}\right\|} and using ε {\textstyle \varepsilon } to indicate a shape parameter that can be used to scale the input of the radial kernel11):

  • Infinitely Smooth RBFs

    These radial basis functions are from C ∞ ( R ) {\displaystyle C^{\infty }(\mathbb {R} )} and are strictly positive definite functions12 that require tuning a shape parameter ε {\displaystyle \varepsilon }

    • Gaussian:
      φ ( r ) = e − ( ε r ) 2 , {\displaystyle \varphi (r)=e^{-(\varepsilon r)^{2}},} 2
    • Multiquadric:
      φ ( r ) = 1 + ( ε r ) 2 , {\displaystyle \varphi (r)={\sqrt {1+(\varepsilon r)^{2}}},} 3
    • Inverse quadratic:
      φ ( r ) = 1 1 + ( ε r ) 2 , {\displaystyle \varphi (r)={\dfrac {1}{1+(\varepsilon r)^{2}}},} 4
    • Inverse multiquadric:
      φ ( r ) = 1 1 + ( ε r ) 2 , {\displaystyle \varphi (r)={\dfrac {1}{\sqrt {1+(\varepsilon r)^{2}}}},} 5
    • RTH:13
      φ ( r ) = r tanh ⁡ ( ε r ) , {\displaystyle \varphi (r)=r\tanh(\varepsilon r),} 6
  • Polyharmonic spline:
    φ ( r ) = r k , k = 1 , 3 , 5 , … φ ( r ) = r k ln ⁡ ( r ) , k = 2 , 4 , 6 , … {\displaystyle {\begin{aligned}\varphi (r)&=r^{k},&k&=1,3,5,\dotsc \\\varphi (r)&=r^{k}\ln(r),&k&=2,4,6,\dotsc \end{aligned}}} 7
    *For even-degree polyharmonic splines ( k = 2 , 4 , 6 , … ) {\displaystyle (k=2,4,6,\dotsc )} , to avoid numerical problems at r = 0 {\displaystyle r=0} where ln ⁡ ( 0 ) = − ∞ {\displaystyle \ln(0)=-\infty } , the computational implementation is often written as φ ( r ) = r k − 1 ln ⁡ ( r r ) {\displaystyle \varphi (r)=r^{k-1}\ln(r^{r})} .
  • Thin plate spline (a special polyharmonic spline):
    φ ( r ) = r 2 ln ⁡ ( r ) , {\displaystyle \varphi (r)=r^{2}\ln(r),} 8
  • Compactly Supported RBFs

    These RBFs are compactly supported and thus are non-zero only within a radius of 1 / ε {\displaystyle 1/\varepsilon } , and thus have sparse differentiation matrices

    • Bump function:
      φ ( r ) = { exp ⁡ ( − 1 1 − ( ε r ) 2 )  for  r < 1 ε 0  otherwise , {\displaystyle \varphi (r)={\begin{cases}\exp \left(-{\frac {1}{1-(\varepsilon r)^{2}}}\right)&{\text{ for }}r<{\frac {1}{\varepsilon }}\\0&{\text{ otherwise}}\end{cases}},} 9

Approximation

Main article: Kernel smoothing

Main article: Radial basis function interpolation

Radial basis functions are typically used to build up function approximations of the form

y ( x ) = ∑ i = 1 N w i φ ( ‖ x − x i ‖ ) , {\displaystyle y(\mathbf {x} )=\sum _{i=1}^{N}w_{i}\,\varphi (\left\|\mathbf {x} -\mathbf {x} _{i}\right\|),} 10

where the approximating function y ( x ) {\textstyle y(\mathbf {x} )} is represented as a sum of N {\displaystyle N} radial basis functions, each associated with a different center x i {\textstyle \mathbf {x} _{i}} , and weighted by an appropriate coefficient w i . {\textstyle w_{i}.} The weights w i {\textstyle w_{i}} can be estimated using the matrix methods of linear least squares, because the approximating function is linear in the weights w i {\textstyle w_{i}} .

Approximation schemes of this kind have been particularly used in time series prediction and control of nonlinear systems exhibiting sufficiently simple chaotic behaviour and 3D reconstruction in computer graphics (for example, hierarchical RBF and Pose Space Deformation).

RBF Network

Main article: radial basis function network

The sum

y ( x ) = ∑ i = 1 N w i φ ( ‖ x − x i ‖ ) , {\displaystyle y(\mathbf {x} )=\sum _{i=1}^{N}w_{i}\,\varphi (\left\|\mathbf {x} -\mathbf {x} _{i}\right\|),} 11

can also be interpreted as a rather simple single-layer type of artificial neural network called a radial basis function network, with the radial basis functions taking on the role of the activation functions of the network. It can be shown that any continuous function on a compact interval can in principle be interpolated with arbitrary accuracy by a sum of this form, if a sufficiently large number N {\textstyle N} of radial basis functions is used.

The approximant y ( x ) {\textstyle y(\mathbf {x} )} is differentiable with respect to the weights w i {\textstyle w_{i}} . The weights could thus be learned using any of the standard iterative methods for neural networks.

Using radial basis functions in this manner yields a reasonable interpolation approach provided that the fitting set has been chosen such that it covers the entire range systematically (equidistant data points are ideal). However, without a polynomial term that is orthogonal to the radial basis functions, estimates outside the fitting set tend to perform poorly.

RBFs for PDEs

Main article: Kansa method

Radial basis functions are used to approximate functions and so can be used to discretize and numerically solve Partial Differential Equations (PDEs). This was first done in 1990 by E. J. Kansa who developed the first RBF based numerical method. It is called the Kansa method and was used to solve the elliptic Poisson equation and the linear advection-diffusion equation. The function values at points x {\displaystyle \mathbf {x} } in the domain are approximated by the linear combination of RBFs:

u ( x ) = ∑ i = 1 N λ i φ ( ‖ x − x i ‖ ) , x ∈ R d {\displaystyle u(\mathbf {x} )=\sum _{i=1}^{N}\lambda _{i}\,\varphi (\left\|\mathbf {x} -\mathbf {x} _{i}\right\|),\quad \mathbf {x} \in \mathbb {R} ^{d}} 12

The derivatives are approximated as such:

∂ n u ( x ) ∂ x n = ∑ i = 1 N λ i ∂ n ∂ x n φ ( ‖ x − x i ‖ ) , x ∈ R d {\displaystyle {\frac {\partial ^{n}u({\textbf {x}})}{\partial x^{n}}}=\sum _{i=1}^{N}\lambda _{i}\,{\frac {\partial ^{n}}{\partial x^{n}}}\varphi (\left\|\mathbf {x} -\mathbf {x} _{i}\right\|),\quad \mathbf {x} \in \mathbb {R} ^{d}} 13

where N {\displaystyle N} are the number of points in the discretized domain, d {\displaystyle d} the dimension of the domain and λ {\displaystyle \lambda } the scalar coefficients that are unchanged by the differential operator.14

Different numerical methods based on Radial Basis Functions were developed thereafter. Some methods are the RBF-FD method,1516 the RBF-QR method17 and the RBF-PUM method.18

See also

Further reading

References

  1. Radial Basis Function networks Archived 2014-04-23 at the Wayback Machine http://www.anc.ed.ac.uk/rbf/intro/node8.html

  2. Broomhead, David H.; Lowe, David (1988). "Multivariable Functional Interpolation and Adaptive Networks" (PDF). Complex Systems. 2: 321–355. Archived from the original (PDF) on 2014-07-14. https://web.archive.org/web/20140714173428/https://www.complex-systems.com/pdf/02-3-5.pdf

  3. Michael J. D. Powell (1977). "Restart procedures for the conjugate gradient method". Mathematical Programming. 12 (1): 241–254. doi:10.1007/bf01593790. S2CID 9500591. /wiki/Michael_J._D._Powell

  4. Sahin, Ferat (1997). A Radial Basis Function Approach to a Color Image Classification Problem in a Real Time Industrial Application (M.Sc.). Virginia Tech. p. 26. hdl:10919/36847. Radial basis functions were first introduced by Powell to solve the real multivariate interpolation problem. http://hdl.handle.net/10919/36847

  5. Broomhead & Lowe 1988, p. 347: "We would like to thank Professor M.J.D. Powell at the Department of Applied Mathematics and Theoretical Physics at Cambridge University for providing the initial stimulus for this work." - Broomhead, David H.; Lowe, David (1988). "Multivariable Functional Interpolation and Adaptive Networks" (PDF). Complex Systems. 2: 321–355. Archived from the original (PDF) on 2014-07-14. https://web.archive.org/web/20140714173428/https://www.complex-systems.com/pdf/02-3-5.pdf

  6. VanderPlas, Jake (6 May 2015). "Introduction to Support Vector Machines". [O'Reilly]. Retrieved 14 May 2015. https://beta.oreilly.com/learning/intro-to-svm

  7. Buhmann, Martin Dietrich (2003). Radial basis functions : theory and implementations. Cambridge University Press. ISBN 978-0511040207. OCLC 56352083. 978-0511040207

  8. Biancolini, Marco Evangelos (2018). Fast radial basis functions for engineering applications. Springer International Publishing. ISBN 9783319750118. OCLC 1030746230. 9783319750118

  9. Fasshauer, Gregory E. (2007). Meshfree Approximation Methods with MATLAB. Singapore: World Scientific Publishing Co. Pte. Ltd. pp. 17–25. ISBN 9789812706331. 9789812706331

  10. Wendland, Holger (2005). Scattered Data Approximation. Cambridge: Cambridge University Press. pp. 11, 18–23, 64–66. ISBN 0521843359. 0521843359

  11. Fasshauer, Gregory E. (2007). Meshfree Approximation Methods with MATLAB. Singapore: World Scientific Publishing Co. Pte. Ltd. p. 37. ISBN 9789812706331. 9789812706331

  12. Fasshauer, Gregory E. (2007). Meshfree Approximation Methods with MATLAB. Singapore: World Scientific Publishing Co. Pte. Ltd. pp. 37–45. ISBN 9789812706331. 9789812706331

  13. Heidari, Mohammad; Mohammadi, Maryam; De Marchi, Stefano (2021). "A shape preserving quasi-interpolation operator based on a new transcendental RBF". Dolomites Research Notes on Approximation. 14 (1): 56–73. doi:10.14658/PUPJ-DRNA-2021-1-6. /wiki/Doi_(identifier)

  14. Kansa, E. J. (1990-01-01). "Multiquadrics—A scattered data approximation scheme with applications to computational fluid-dynamics—II solutions to parabolic, hyperbolic and elliptic partial differential equations". Computers & Mathematics with Applications. 19 (8): 147–161. doi:10.1016/0898-1221(90)90271-K. ISSN 0898-1221. https://doi.org/10.1016%2F0898-1221%2890%2990271-K

  15. Tolstykh, A. I.; Shirobokov, D. A. (2003-12-01). "On using radial basis functions in a "finite difference mode" with applications to elasticity problems". Computational Mechanics. 33 (1): 68–79. Bibcode:2003CompM..33...68T. doi:10.1007/s00466-003-0501-9. ISSN 1432-0924. S2CID 121511032. https://link.springer.com/article/10.1007/s00466-003-0501-9

  16. Shu, C; Ding, H; Yeo, K. S (2003-02-14). "Local radial basis function-based differential quadrature method and its application to solve two-dimensional incompressible Navier–Stokes equations". Computer Methods in Applied Mechanics and Engineering. 192 (7): 941–954. Bibcode:2003CMAME.192..941S. doi:10.1016/S0045-7825(02)00618-7. ISSN 0045-7825. https://www.sciencedirect.com/science/article/pii/S0045782502006187

  17. Fornberg, Bengt; Larsson, Elisabeth; Flyer, Natasha (2011-01-01). "Stable Computations with Gaussian Radial Basis Functions". SIAM Journal on Scientific Computing. 33 (2): 869–892. Bibcode:2011SJSC...33..869F. doi:10.1137/09076756X. ISSN 1064-8275. https://epubs.siam.org/doi/10.1137/09076756X

  18. Safdari-Vaighani, Ali; Heryudono, Alfa; Larsson, Elisabeth (2015-08-01). "A Radial Basis Function Partition of Unity Collocation Method for Convection–Diffusion Equations Arising in Financial Applications". Journal of Scientific Computing. 64 (2): 341–367. doi:10.1007/s10915-014-9935-9. ISSN 1573-7691. S2CID 254691757. https://link.springer.com/article/10.1007/s10915-014-9935-9