RBF_K {KBoost} | R Documentation |
Function to calculate the RBF Kernel of a matrix X with width g.
RBF_K(x, g)
x |
an Nx1 numeric matrix with N observations. |
g |
a positive scalar with the width parameter. |
the matrix with the RBF kernel
x = rnorm(100,0,1) k = RBF_K(x,40)