kernel_normal {KBoost} | R Documentation |
A function to perform feature normalization in kernel space.
kernel_normal(K)
K |
an NxN numeric matrix with the kernel function with N observations. |
feature centred kernel.
x = rnorm(100,0,1) k = RBF_K(x,40) k_ = kernel_normal(k)