Description Usage Arguments Value Functions Examples
Utility functions for radial kernels.
1 2 3 4 5 6 7 8 9 | Gaussian(r, scale = 1)
Multiquadric(r, scale = 1)
InverseQuadratic(r, scale = 1)
InverseMultiquadric(r, scale = 1)
Bump(r, scale = 1)
|
r |
a positive numeric object |
scale |
a positive number for scaling |
an object of the same size of r
Gaussian
: \exp(- r^2)
Multiquadric
: √{1 + r^2}
InverseQuadratic
: 1 / (1 + r^2)
InverseMultiquadric
: 1 / √{1 + r^2}
Bump
: \exp(- 1 / (1 - r^2))) when r < 1, and 0 otherwise.
Note that it is not scaled (Bump(0)
< 1) and it is compactly supported.
1 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.