| Library: | kernel |
| See also: | highepa |
| Macro: | highgau | |
| Description: | highgau computes the multivariate higher order kernel derived from the gaussian kernel |
| Usage: | y = highgau(x, {q}) | |
| Input: | ||
| x | n x p matrix | |
| {q} | order of the kernel, default is 2, can be 4, 6, 8 | |
| Output: | ||
| y | n x 1 matrix | |
library("kernel")
x = aseq(-4, 81, 0.1)
y = highgau(x,6)
t=createdisplay(1,1)
show(t,1,1,x~y)
The kernel is pictured
| Library: | kernel |
| See also: | highepa |