kernel_exp {SpatialGEV} | R Documentation |
Exponential covariance function
Description
Exponential covariance function
Usage
kernel_exp(x, sigma, ell, X1 = NULL, X2 = NULL)
Arguments
x |
Distance measure. |
sigma |
The scale parameter with the constraint of |
ell |
The range/lengthscale parameter with the constraint of |
X1 |
A |
X2 |
A |
Details
Let x = dist(x_i, x_j).
cov(i,j) = sigma^2*exp(-x/ell)
Value
A matrix or a scalar of exponential covariance depending on the type of x
or
whether X1
and X2
are used instead.
Examples
X1 <- cbind(runif(10, 1, 10), runif(10, 10, 20))
X2 <- cbind(runif(5, 1, 10), runif(5, 10, 20))
kernel_exp(sigma=2, ell=1, X1=X1, X2=X2)
kernel_exp(as.matrix(stats::dist(X1)), sigma=2, ell=1)
[Package SpatialGEV version 1.0.1 Index]