Description Usage Arguments Value Examples
Get kernel evaluation(s) centered at s_i and evaluated at one or many gridpoints s_j
1 | get_kernel_evaluation(s_i, s_j, grid_spacing, phi_i)
|
s_i |
Point where the kernel is centered at |
s_j |
Grid points(s) where the kernel is evaluated at |
grid_spacing |
DPC grid resolution |
phi_i |
Kernel parameters at location s_i |
Kernel evaluation(s) at the gridpoint(s) s_j
1 2 3 4 5 6 | get_kernel_evaluation(s_i = list(lat = 0, lon = 0), s_j = list(lat = 0, lon = 0),
grid_spacing = 1, phi_i = c(0, 0, 0, 0)) == 1
get_kernel_evaluation(s_i = list(lat = 0, lon = 0), s_j = list(lat = 0, lon = 1),
grid_spacing = 1, phi_i = c(0, 0, 0, 0)) == 0
get_kernel_evaluation(s_i = list(lat = 0, lon = 0), s_j = list(lat = 0, lon = 1),
grid_spacing = 2, phi_i = c(0, 0, 0, 0)) == 0.75
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.