Description Usage Arguments Details Value Author(s) See Also Examples
Computation reproducing kernel evaluations.
1 2 | sobolevKernel(s, r, t = 1, sub = NULL, constraint = 'boundary')
gaussianKernel(s, r, t = 1, c = 1)
|
s |
a |
r |
a |
t |
a |
c |
a |
sub |
a |
constraint |
a |
The Sobolev kernel is the reproducing kernel for the (2,2) Sobolev space
on [0, t]. The arguments s
and r
must be in the interval. If sub = 1
the kernel is projected to the subspace of functions being 0 in 0 and t
The Gaussian kernel is exp(-c(s-r)^2/t^2).
Both arguments t
and c
are needed when used with ppKernel
,
where t
is always the upper bound on the support.
A numeric
. The value of the kernel in (s,r).
Niels Richard Hansen Niels.R.Hansen@math.ku.dk.
1 2 3 4 5 6 | sobolevKernel(1:5, 1:5)
sobolevKernel(1:5, 1:5, t = 5)
gaussianKernel(1:5, 1:5)
gaussianKernel(1:5, 1:5, t = 5)
gaussianKernel(1:5, 1:5, t = 5, c = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.